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”).

A144466
Primes p such that the partition number of the p-th prime is also a prime.
0
2, 3, 37, 257, 1021, 1601, 67757, 193873, 331889, 332099, 843181, 1278029, 1437133, 1613153, 2160797, 2423873, 3076313, 3506039, 4108889, 4430753, 4656089
OFFSET
1,1
FORMULA
{ p in {A000040} : A000041(A000040(p)) in {A000040} }.
EXAMPLE
37 is in the sequence because the 37th prime is 157, the partition number of 157 is 80630964769 and 80630964769 is a prime.
MATHEMATICA
Flatten[Table[If[PrimeQ[PartitionsP[Prime[Prime[n]]]], Prime[n], {}], {n, 1, 2000}]]
Select[Prime[Range[260]], PrimeQ[PartitionsP[Prime[#]]]&] (* Harvey P. Dale, Nov 01 2011 *)
CROSSREFS
Cf. A038601.
Sequence in context: A189027 A061576 A221055 * A245061 A270587 A119448
KEYWORD
nonn,more
AUTHOR
Roger L. Bagula, Oct 09 2008
EXTENSIONS
Edited by Alois P. Heinz, Oct 26 2011
a(7)-a(21) from Michael S. Branicky, Sep 30 2023
STATUS
approved