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.

A328939 Carmichael numbers that are products of primes p for which each p-1 is squarefree.

Original entry on oeis.org

10267951, 72108421, 111291181, 139952671, 1588247851, 6004532941, 7200256261, 8815102297, 9001235881, 10884042841, 15989367241, 18500666251, 23729234761, 34268731321, 34558584607, 37870128451, 74689102411, 77538554731, 121254376891, 149842746691, 187054437571
Offset: 1

Views

Author

Amiram Eldar, Oct 31 2019

Keywords

Comments

Shanks noted that among the first 300 Carmichael numbers only 3 are in this sequence.

Crossrefs

Cf. A002997.

Programs

  • Mathematica
    aQ[n_] := CompositeQ[n] && Divisible[n-1, CarmichaelLambda[n]] && AllTrue[FactorInteger[n][[;; , 1]] - 1, SquareFreeQ]; Select[Range[10^8], aQ]