A284594 Numbers whose square has a prime number of partitions.
2, 6, 29, 36, 2480, 14881
Offset: 1
Examples
a(2) = 6 is in the sequence because A000041(6^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,2500,if(ispseudoprime(numbpart(n^2)),print1(n,", ")))
Comments