[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A377045 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Number of partitions of cuban primes.
(history; published version)
#12 by OEIS Server at Fri Nov 15 09:06:17 EST 2024
LINKS

Robert Israel, <a href="/A377045/b377045_1.txt">Table of n, a(n) for n = 1..153</a>

#11 by Michael De Vlieger at Fri Nov 15 09:06:07 EST 2024
STATUS

reviewed

approved

Discussion
Fri Nov 15
09:06
OEIS Server: Installed first b-file as b377045.txt.
#10 by Stefano Spezia at Fri Nov 15 00:52:03 EST 2024
STATUS

proposed

reviewed

#9 by Robert Israel at Thu Nov 14 22:57:12 EST 2024
STATUS

editing

proposed

#8 by Robert Israel at Thu Nov 14 22:57:07 EST 2024
LINKS

Robert Israel, <a href="/A377045/b377045_1.txt">Table of n, a(n) for n = 1..153</a>

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

STATUS

approved

editing

#7 by N. J. A. Sloane at Wed Oct 16 21:29:22 EDT 2024
STATUS

proposed

approved

#6 by Alois P. Heinz at Tue Oct 15 17:01:33 EDT 2024
STATUS

editing

proposed

Discussion
Wed Oct 16
21:29
N. J. A. Sloane: [Annoucement: The Sequence Fans Mailing List is now a Google Group: Sign into Google, go to https://groups.google.com/g/seqfan, click "Join this group" - Neil Sloane]
#5 by Alois P. Heinz at Tue Oct 15 16:58:53 EDT 2024
COMMENTS

The next term a(13)=~1.49910*10^43 is too large to include.

a(14)=~1.17667*10^45.

STATUS

proposed

editing

Discussion
Tue Oct 15
16:59
Alois P. Heinz: they are not too large but data section is full ...
#4 by Paul F. Marrero Romero at Mon Oct 14 04:58:05 EDT 2024
STATUS

editing

proposed

Discussion
Mon Oct 14
05:55
Joerg Arndt: What can we learn here what is not already i in A000041?
Tue Oct 15
16:19
Paul F. Marrero Romero: First of all, I apologise for the delay in responding, Mr Arndt. Well, I think that this sequence can be useful, because each Cuban prime can be directly related to the number of ways that this prime can be expressed as a sum of positive integers, and avoid taking on count other integers that are not Cuban primes, for which we have A000041 instead. Also, I think this might give some insight into how these partitions behave in relation to other classes of primes.
Regards.
#3 by Paul F. Marrero Romero at Mon Oct 14 04:55:59 EDT 2024
COMMENTS

Number of partitions of primes p such that p=(3*k^2 + 1 )/4 for some integer k (A121259).

FORMULA

a(n) = A000041(A002407(n)).

a(n) = A000041((3*A121259(n)^2 + 1)/4).

MATHEMATICA

PartitionsP[Select[Table[(3k^2 + 1)/4, {k, 50}], PrimeQ]]

CROSSREFS