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!)
A182736 Sum of parts in all partitions of 2n that do not contain 1 as a part. 5
0, 2, 8, 24, 56, 120, 252, 476, 880, 1584, 2740, 4620, 7680, 12428, 19824, 31170, 48224, 73678, 111384, 166364, 246120, 360822, 524216, 755504, 1080912, 1535050, 2165592, 3036096, 4230632, 5861828, 8078820, 11076362, 15112384, 20523492, 27747128 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Essentially this is a bisection (even indices) of A138880.
LINKS
FORMULA
a(n) = 2*n*A182746(n). - Omar E. Pol, Dec 05 2010
MAPLE
b:= proc(n, i) option remember; local p, q;
if n<0 then [0, 0]
elif n=0 then [1, 0]
elif i<2 then [0, 0]
else p, q:= b(n, i-1), b(n-i, i);
[p[1]+q[1], p[2]+q[2]+q[1]*i]
fi
end:
a:= n-> b(2*n, 2*n)[2]:
seq(a(n), n=0..34); # Alois P. Heinz, Dec 03 2010
MATHEMATICA
b[n_] := (PartitionsP[n] - PartitionsP[n-1])*n; a[n_] := b[2n]; Table[a[n], {n, 0, 34}] (* Jean-François Alcover, Oct 07 2015 *)
CROSSREFS
Sequence in context: A009059 A009297 A235793 * A083553 A051745 A006734
KEYWORD
nonn
AUTHOR
Omar E. Pol, Dec 03 2010
EXTENSIONS
More terms from Alois P. Heinz, Dec 03 2010
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 28 18:59 EDT 2024. Contains 372092 sequences. (Running on oeis4.)