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”).

A029567
Quasi-Carmichael numbers to base -7: squarefree composites n such that prime p|n ==> p+7|n+7.
2
273, 2093, 2387, 2585, 6545, 7553, 11433, 11753, 16653, 19865, 33473, 34265, 35105, 37433, 53345, 72065, 88193, 99209, 120089, 124733, 136793, 149753, 155873, 158723, 159581, 164423, 198653, 203573, 232193, 257033, 263993, 284303, 349265, 372053
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[#, 7] &] (* Giovanni Resta, May 21 2013 *)
CROSSREFS
Sequence in context: A276980 A350303 A214220 * A028534 A279114 A210270
KEYWORD
nonn
STATUS
approved