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.

A331876 Number of primes of the form P(k) = k^2 + k + 41 for k <= 10^n, where P(k) is Euler's prime-generating polynomial A202018.

Original entry on oeis.org

2, 11, 87, 582, 4149, 31985, 261081, 2208197, 19132653, 168806741, 1510676803
Offset: 0

Views

Author

Hugo Pfoertner, Jan 30 2020

Keywords

Examples

			a(0) = 2 because 41 and 43 are the 2 primes generated for k <= 1 = 10^0.
a(1) = 11 because 41, 43, 47, 53, 61, 71, 83, 97, 113, 131, 151 are the 11 primes generated for k <= 10^1, (A202018(10) = 151).
a(3) = 87 because 87 terms of A202018(0..100) are prime. The 14 composites occur for k = A007634(1..14): 40, 41, 44, 49, 56, ...
		

Crossrefs

Programs

  • PARI
    n=0;m=1;for(k=0,10^7,my(j=k^2+k+41);if(isprime(j),n++);if(k==m,m*=10;print1(n,", ")))