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.

A144717 a(n) = smallest positive integer > a(n-1) such that 2*a(1)*a(2)*...*a(n) + 1 is prime.

Original entry on oeis.org

1, 2, 3, 5, 7, 8, 9, 11, 12, 14, 17, 20, 24, 30, 34, 44, 72, 85, 86, 92, 115, 122, 125, 132, 142, 150, 161, 162, 181, 186, 198, 224, 248, 252, 282, 283, 290, 307, 319, 321, 344, 350, 376, 445, 476, 567, 623, 676, 682, 704, 741, 749, 786, 803, 806, 893, 1014, 1046
Offset: 1

Views

Author

Artur Jasinski, Sep 19 2008

Keywords

Examples

			a(1)=1 because a(0) is not defined and 2*1 + 1 = 3 is prime;
a(2)=2 because 2*1*2 + 1 = 5 is prime;
a(3)=3 because 2*1*2*3 + 1 = 13 is prime;
a(4) is not 4 because 2*1*2*3*4 + 1 = 49 is not prime, but a(4)=5 works because 2*1*2*3*5 + 1 = 61 is prime.
		

Crossrefs

Programs

  • Mathematica
    k = 2; a = {}; Do[If[PrimeQ[k n + 1], k = k n; AppendTo[a, n]], {n, 1, 3000}]; a (* Artur Jasinski *)
    nxt[{p_,a_}]:=Module[{k=a+1},While[!PrimeQ[p*k+1],k++];{p*k,k}]; NestList[ nxt,{2,1},60][[All,2]] (* Harvey P. Dale, Aug 18 2021 *)
  • Python
    from sympy import isprime
    from itertools import count, islice
    def agen(): # generator of terms
        an, p = 1, 2
        while True:
            yield an
            an = next(k for k in count(an+1) if isprime(p*k+1))
            p *= an
    print(list(islice(agen(), 58))) # Michael S. Branicky, Jan 13 2023

Extensions

Edited by N. J. A. Sloane, Sep 21 2017 following suggestions from Richard C. Schroeppel