OFFSET
1,1
COMMENTS
Number of partitions of prime numbers that are the difference of two consecutive cubes.
Number of partitions of primes p such that p=(3*k^2 + 1)/4 for some integer k (A121259).
LINKS
Robert Israel, Table of n, a(n) for n = 1..153
MAPLE
R:= NULL: count:= 0:
for i from 1 while count < 30 do
p:= (i+1)^3 - i^3;
if isprime(p) then count:= count+1; v:= combinat:-numbpart(p); R:= R, v; fi
od:
R; # Robert Israel, Nov 14 2024
MATHEMATICA
PartitionsP[Select[Table[(3k^2 + 1)/4, {k, 50}], PrimeQ]]
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Paul F. Marrero Romero, Oct 14 2024
STATUS
approved