login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A029569
Quasi-Carmichael numbers to base -9: squarefree composites n such that prime p|n ==> p+9|n+9.
2
231, 2679, 18471, 24311, 61171, 71799, 84271, 107371, 112871, 140151, 150071, 305359, 364791, 420391, 483351, 854845, 948631, 966671, 1003191, 1209745, 1260791, 1327911, 1451791, 1675511, 1691351, 1870167, 1982391, 2400935, 2721535
OFFSET
1,1
MATHEMATICA
qcp[n_, d_] := Block[{p, e}, {p, e} = Transpose@FactorInteger@n;
Length[p] > 1 && Max[e] == 1 && And @@ IntegerQ /@ ((n + d)/(p + d))]; Select[Range[10^6], qcp[#, 9] &] (* Giovanni Resta, May 21 2013 *)
CROSSREFS
Sequence in context: A183664 A260302 A211717 * A152102 A183663 A362429
KEYWORD
nonn
STATUS
approved