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.

A065696 Numbers m such that N = (am+1)(bm+1)(cm+1) is a 3-Carmichael number (A087788), where a,b,c = 1,2,55.

Original entry on oeis.org

3876, 7506, 8166, 16746, 20706, 23676, 24336, 40506, 42156, 68226, 69876, 79776, 95286, 123996, 139176, 149076, 166236, 177786, 183066, 187686, 203856, 210126, 213096, 214086, 216396, 221676, 232566, 265566, 307146, 310116, 321006, 326946
Offset: 1

Views

Author

Harvey Dubner (harvey(AT)dubner.com), Nov 14 2001

Keywords

Crossrefs

Programs

  • Mathematica
    CarmichaelNbrQ[n_] := ! PrimeQ@ n && Mod[n, CarmichaelLambda@ n] == 1; Select[ Range@ 350000, PrimeQ[# + 1] && PrimeQ[2# + 1] && PrimeQ[55# + 1] && CarmichaelNbrQ[(# + 1)(2# + 1)(55# + 1)] &] (* Robert G. Wilson v, Aug 23 2012 *)

Formula

am+1, bm+1, cm+1 are primes and am|(N-1), bm|(N-1), cm|(N-1).