A285088 Numbers n such that the number of partitions of n(n+1)/2 (=A000041(A000217(n))) is prime.
2, 3, 8, 3947, 43968, 61681
Offset: 1
Examples
a(3) = 8 is in the sequence because A000041(8*9/2) = 17977 is a prime.
Links
- Chris K. Caldwell, Top twenty prime partition numbers, The Prime Pages.
- Eric Weisstein's World of Mathematics, Partition Function P
- Eric Weisstein's World of Mathematics, Integer Sequence Primes
Programs
-
PARI
for(n=1,2000,if(ispseudoprime(numbpart(n*(n+1)/2)),print1(n,", ")))
Comments