OFFSET
1,1
COMMENTS
The sequence contains all the positive multiples of 6.
Numbers not == 0 (mod 6): 56, 112, 182, 224, 280, 364, 380, 392, 448, 560, 616, 728, 760, 784, 896, 910, 952, 992, ..., . - Robert G. Wilson v
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The distinct primes that divide 56 are 2 and 7. 56 is included in the sequence because (7+1)=8 divides 56.
MAPLE
with(numtheory): a:=proc(n) local A, fsn, j: fsn:=factorset(n): A:={}: for j from 1 to nops(fsn) do if type(n/(1+fsn[j]), integer)=true then A:=A union {j} else A:=A: fi: od: if nops(A)>0 then n else fi end: seq(a(n), n=2..370); # Emeric Deutsch, Mar 28 2007
MATHEMATICA
fQ[n_] := Block[{fi = First /@ FactorInteger@n + 1}, MemberQ[IntegerQ /@ (n/fi), True]]; Select[ Range@ 300, fQ@# &] (* Robert G. Wilson v *)
Select[Range[400], Length[Intersection[FactorInteger[#][[All, 1]]+1, Divisors[#]]]>0&] (* Harvey P. Dale, Dec 17 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Mar 14 2007
EXTENSIONS
More terms from Emeric Deutsch, Mar 28 2007
STATUS
approved