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.

A092840 Primes in A001003.

Original entry on oeis.org

3, 11, 197, 103049
Offset: 1

Views

Author

Eric W. Weisstein, Mar 07 2004

Keywords

Comments

The next term is too large to include.

Crossrefs

Programs

  • PARI
    s(m)= { if (m==1, return(a1)); if (m==2, return(a2)); r = (3*(2*m - 3)*a2 - (m - 3)*a1)/m; a1=a2; a2=r; return(r); }
    { a1=1; a2=1; n=0; for (m=1, 300, a=s(m); if (isprime(a), n++; print1(a, ", "))); } \\ Harry J. Smith, Jun 21 2009