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!)
A343147 The number of partitions of the n-th primorial into distinct parts. 3
1, 1, 4, 296, 884987529, 41144767887910339859917073881177514 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A000009(A002110(n)).
MAPLE
b:= proc(n) b(n):= `if`(n=0, 1, b(n-1)*ithprime(n)) end:
g:= proc(n) option remember; `if`(n=0, 1, add(g(n-j)*add(
`if`(d::odd, d, 0), d=numtheory[divisors](j)), j=1..n)/n)
end:
a:= n-> g(b(n)):
seq(a(n), n=0..5);
MATHEMATICA
$RecursionLimit = 2^13;
b[n_] := b[n] = If[n == 0, 1, b[n - 1]*Prime[n]];
g[n_] := g[n] = If[n == 0, 1, Sum[g[n - j]*Sum[
If[OddQ[d], d, 0], {d, Divisors[j]}], {j, 1, n}]/n];
a[n_] := g[b[n]];
Table[a[n], {n, 0, 5}] (* Jean-François Alcover, May 02 2022, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A256703 A176432 A278924 * A128904 A001537 A279576
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Apr 06 2021
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 July 20 01:41 EDT 2024. Contains 374441 sequences. (Running on oeis4.)