OFFSET
1,1
COMMENTS
The sequence is part of A056729.
All members are odd.
EXAMPLE
26999 = 49*19*29 is in the list because 27000 is divisible by 8,50,20 and 30;
193599 = 9*49*439 is in the list because 193600 is divisible by 4,10,8, 50,440.
MATHEMATICA
PPDivs[m_Integer]:=Module[{f=FactorInteger[m]}, Flatten[Table[First[f[[i]]]^Range[Last[f[[i]]]], {i, 1, Length[f]}]]]; Select[Select[ Range[1000000], !SquareFreeQ[#]&], Union[ Mod[#+1, 1+PPDivs[#] ] ]== {0} &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Emmanuel Vantieghem, Jul 08 2013
STATUS
approved