cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A029563 Quasi-Carmichael numbers to base -3: squarefree composites n such that for every prime p that divides n, p+3 divides n+3.

Original entry on oeis.org

165, 357, 1885, 2397, 3965, 9447, 11877, 30597, 37245, 49657, 57405, 73437, 75517, 76857, 106485, 127677, 146605, 155397, 187485, 211117, 223197, 223737, 301597, 304917, 312477, 378397, 406077, 413445, 460317, 543197, 728637, 737877, 765697
Offset: 1

Views

Author

Keywords

References

  • J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 165, p. 53, Ellipses, Paris 2008.

Programs

  • 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[#, 3] &] (* Giovanni Resta, May 21 2013 *)