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.

A214454 Number of primes of the form x^8 + 1 less than 10^n.

Original entry on oeis.org

1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 7, 8, 13, 15, 23, 29, 41, 52, 65, 84, 114, 149, 194, 257, 336, 431, 547, 686, 880, 1151, 1478, 1961, 2499, 3258, 4264, 5550, 7231, 9416, 12286, 16031, 20887, 27181, 35466, 46009, 60053, 78107, 102086, 133309, 174369, 227810
Offset: 1

Views

Author

Henryk Dabrowski, Jul 18 2012

Keywords

Comments

It is conjectured that there are infinitely many primes of the form x^8 + 1 (and thus this sequence never becomes constant), but this has not been proved.

Examples

			a(16) = 3 because the only primes of the form x^8 + 1 < 10^16 are the primes: 2, 257, 65537.
		

Crossrefs

Programs

  • PARI
    a(n) = sum(k=1,(10^n-1)^(1/8), isprime(k^8+1))

Extensions

More terms from Henryk Dabrowski, Jul 28 2012