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.

A382481 a(n) is the number of primes less than 4^(n^2).

Original entry on oeis.org

0, 2, 54, 23000, 203280221, 33483379603407, 96601075195075186855
Offset: 0

Views

Author

Stefano Spezia, Mar 28 2025

Keywords

Comments

Thue's proof, that there exist infinitely many primes, shows also that n+1 is a lower bound for a(n) (see Ribenboim, 2004).

References

  • Paulo Ribenboim, The Little Book of Bigger Primes, Springer-Verlag NY 2004. See pp. 9-10.

Crossrefs

Programs

  • Mathematica
    a[n_]:=PrimePi[4^(n^2)]; Array[a,6,0]
  • Python
    from sympy import primepi
    def A382481(n): return primepi(1<<(n**2<<1)) # Chai Wah Wu, Mar 29 2025