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!)
A279788 Twice partitioned numbers where the first partition is constant and the latter partitions are strict. 5
1, 1, 2, 3, 4, 4, 10, 6, 12, 17, 21, 13, 57, 19, 49, 87, 86, 39, 240, 55, 279, 330, 235, 105, 1141, 386, 491, 1217, 1461, 257, 4804, 341, 2968, 4225, 1958, 5898, 18961, 761, 3782, 15007, 30572, 1261, 66245, 1611, 32523, 106951, 13122, 2591, 283013, 81390, 182873 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
The a(6)=10 twice-partitions are:
((6)), ((51)), ((42)), ((3)(3)), ((3)(21)), ((21)(3)),
((321)), ((2)(2)(2)), ((21)(21)), ((1)(1)(1)(1)(1)(1)).
MAPLE
with(numtheory):
b:= proc(n) option remember; `if`(n=0, 1, add(add(
`if`(d::odd, d, 0), d=divisors(j))*b(n-j), j=1..n)/n)
end:
a:= proc(n) option remember; `if`(n=0, 1,
add(b(n/d)^d, d=divisors(n)))
end:
seq(a(n), n=0..70); # Alois P. Heinz, Dec 20 2016
MATHEMATICA
Table[DivisorSum[n, PartitionsQ[n/#]^#&], {n, 20}]
CROSSREFS
Sequence in context: A202784 A118263 A217478 * A207627 A102539 A240220
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 18 2016
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 13 11:43 EDT 2024. Contains 372504 sequences. (Running on oeis4.)