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.

A231573 Composite numbers n such that lambda(n) divides 6n-6, where lambda is the Carmichael lambda function (A002322).

Original entry on oeis.org

4, 6, 8, 9, 12, 14, 15, 18, 21, 24, 28, 35, 36, 39, 42, 45, 56, 63, 65, 66, 72, 76, 84, 91, 105, 117, 126, 133, 153, 168, 186, 195, 231, 247, 252, 259, 273, 276, 315, 341, 344, 396, 435, 455, 481, 504, 532, 561, 585, 616, 645, 651, 671, 703, 804, 819, 861
Offset: 1

Views

Author

Keywords

Comments

Contains the Carmichael numbers, A231569 and A231570.
Conjecture: the relative asymptotic density of Carmichael numbers in this sequence exists, is positive and smaller than 1.

Crossrefs

Programs

  • Mathematica
    Select [1 + Range[100000], ! PrimeQ[#] && IntegerQ[6 (# -1)/ CarmichaelLambda[#]] &]
  • PARI
    is(n)=!isprime(n) && (6*n-6)%lcm(znstar(n)[2])==0 && n>1 \\ Charles R Greathouse IV, Nov 13 2013