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.

A285088 Numbers n such that the number of partitions of n(n+1)/2 (=A000041(A000217(n))) is prime.

Original entry on oeis.org

2, 3, 8, 3947, 43968, 61681
Offset: 1

Views

Author

Serge Batalov, Apr 09 2017

Keywords

Comments

Because asymptotically A000041(n*(n+1)/2) ~ exp(Pi*sqrt(2/3*(n*(n+1)/2))) / (4*sqrt(3)*(n*(n+1)/2)), the sum of the prime probabilities ~1/log(A000041(n*(n+1)/2)) is diverging and there are no obvious restrictions on primality; therefore, this sequence may be conjectured to be infinite.

Examples

			a(3) = 8 is in the sequence because A000041(8*9/2) = 17977 is a prime.
		

Crossrefs

Programs

  • PARI
    for(n=1,2000,if(ispseudoprime(numbpart(n*(n+1)/2)),print1(n,", ")))