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.

A144723 a(n)= primes arising A144722.

Original entry on oeis.org

7, 19, 73, 433, 3457, 72577, 1669249, 43400449, 1302013441, 46872483841, 1734281902081, 67636994181121, 2840753755607041, 153400702802780161, 8743840059758469121, 638300324362368245761, 52978926922076564398081
Offset: 1

Views

Author

Artur Jasinski, Sep 19 2008

Keywords

Crossrefs

Programs

  • Mathematica
    k = 3; a = {}; Do[If[PrimeQ[k n + 1], AppendTo[a, k n+1 ]; k = k n ], {n, 1, 3000}]; a (*Artur Jasinski*)