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!)
A360713 Sum of all prime encoded perfect partitions of n. 3
1, 2, 4, 14, 16, 70, 64, 280, 356, 850, 1024, 4630, 4096, 10738, 20820, 47264, 65536, 176712, 262144, 643214, 1129572, 2246994, 4194304, 9716880, 17011472, 34785250, 68859688, 139829626, 268435456, 560518826, 1073741824, 2192136576, 4335013860, 8679894658 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=1..A002033(n)} A258119(n,k).
MAPLE
b:= proc(n, l) option remember; `if`(n=1,
mul(ithprime(mul(l[j], j=1..i-1))^(l[i]-1), i=1..nops(l)),
add(b(n/d, [l[], d]), d=numtheory[divisors](n) minus{1}))
end:
a:= n-> b(n+1, []):
seq(a(n), n=0..33);
MATHEMATICA
b[n_, l_] := b[n, l] = If[n == 1, Product[Prime[Product[l[[j]], {j, 1, i - 1}]]^(l[[i]] - 1), {i, 1, Length[l]}], Sum[b[n/d, Append[l, d]], {d, Divisors[n]~Complement~{1}}]];
a[n_] := b[n + 1, {}];
Table[a[n], {n, 0, 33}] (* Jean-François Alcover, Nov 21 2023, after Alois P. Heinz *)
CROSSREFS
Row sums of A258119.
Sequence in context: A173338 A054600 A077570 * A253444 A336821 A299488
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 21 2023
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 April 16 01:40 EDT 2024. Contains 371696 sequences. (Running on oeis4.)