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.

A091102 Number of first half-quadrant Gaussian primes whose norm is less than 10^n.

Original entry on oeis.org

3, 14, 87, 623, 4818, 39263, 332406, 2881124, 25425200, 227528084
Offset: 1

Views

Author

T. D. Noe, Dec 19 2003

Keywords

Crossrefs

Cf. A091098 (number of primes of the form 4k+1 less than 10^n), A091099 (number of primes of the form 4k+3 less than 10^n), A091101, A091102.

Programs

  • Mathematica
    Table[lim2=10^n; lim1=Floor[Sqrt[lim2]]; cnt=0; Do[If[x^2+y^2True], cnt++ ], {x, 0, lim1}, {y, 0, x}]; cnt, {n, 6}]

Formula

a(2n) = A091098(2n) + A091099(n) + 1

Extensions

a(10) calculated from the data at A091098 and A091099 by Amiram Eldar, Feb 28 2020