The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A058698 a(n) = p(P(n)), P = primes (A000040), p = partition numbers (A000041). 18
2, 3, 7, 15, 56, 101, 297, 490, 1255, 4565, 6842, 21637, 44583, 63261, 124754, 329931, 831820, 1121505, 2679689, 4697205, 6185689, 13848650, 23338469, 49995925, 133230930, 214481126, 271248950, 431149389, 541946240, 851376628, 3913864295, 5964539504, 11097645016 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Number of partitions of n-th prime. - Omar E. Pol, Aug 05 2011
LINKS
FORMULA
a(n) = A000041(A000040(n)). - Omar E. Pol, Aug 05 2011
EXAMPLE
a(2) = 3 because the second prime is 3 and there are three partitions of 3: {1, 1, 1}, {1, 2}, {3}.
MATHEMATICA
Table[PartitionsP[Prime[n]], {n, 30}] (* Vladimir Joseph Stephan Orlovsky, Dec 05 2008 *)
PROG
(Haskell)
import Data.MemoCombinators (memo2, integral)
a058698 n = a058698_list !! (n-1)
a058698_list = map (pMemo 1) a000040_list where
pMemo = memo2 integral integral p
p _ 0 = 1
p k m | m < k = 0
| otherwise = pMemo k (m - k) + pMemo (k + 1) m
-- Reinhard Zumkeller, Aug 09 2015
CROSSREFS
Cf. A058697.
Sequence in context: A216435 A110888 A133736 * A058699 A250193 A004782
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 31 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 21 17:21 EDT 2024. Contains 372738 sequences. (Running on oeis4.)