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.

A081430 Class 11- primes.

Original entry on oeis.org

1266767, 1520159, 2486717, 3316619, 4144541, 4512947, 4836779, 5389519, 5638379, 6218827, 6448979, 6633457, 6771419, 6907247, 7460149, 7462639, 7600597, 7739033, 7874627, 8153567, 8291573, 9110639, 9112319, 9121003
Offset: 1

Views

Author

Robert G. Wilson v, Mar 20 2003

Keywords

References

  • R. K. Guy, Unsolved Problems in Number Theory, A18.

Crossrefs

Programs

  • Mathematica
    PrimeFactors[n_Integer] := Flatten[Table[ #[[1]], {1}] & /@ FactorInteger[n]]; f[n_Integer] := Block[{m = n}, If[m == 0, m = 1, While[ IntegerQ[m/2], m /= 2]; While[ IntegerQ[m/3], m /= 3]]; Apply[Times, PrimeFactors[m] - 1]]; ClassMinusNbr[n_] := Length[NestWhileList[f, n, UnsameQ, All]] - 3; Prime[ Select[ Range[300000, 1000000], ClassMinusNbr[ Prime[ # ]] == 1 &]]