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.

User: Fabrice Lavier

Fabrice Lavier's wiki page.

Fabrice Lavier has authored 1 sequences.

A264011 Exponents n such that 2^(2*n+1) - 3*2^n - 1 (A195461) is prime.

Original entry on oeis.org

2, 3, 4, 5, 8, 16, 27, 28, 33, 36, 48, 66, 90, 112, 508, 1036, 1041, 1560, 2208, 2668, 4388, 6097, 6517, 11353, 17284, 22385, 24740, 29805, 77188, 135219, 199237
Offset: 1

Author

Fabrice Lavier, Jan 03 2016

Keywords

Comments

Obtained using a Lucas-Lehmer-type test due to Williams.
Next term > 200000.

Crossrefs

Cf. A195461.

Programs

  • PARI
    for(n=1,10^9,if(ispseudoprime(2^(2*n+1) - 3*2^n - 1),print1(n,", "))); \\ Joerg Arndt, Apr 08 2016