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!)
A182737 Sum of parts in all partitions of 2n+1 that do not contain 1 as a part. 3
0, 3, 10, 28, 72, 154, 312, 615, 1122, 1995, 3465, 5819, 9575, 15498, 24563, 38378, 59202, 90055, 135420, 201630, 297045, 433741, 628155, 902212, 1286348, 1821567, 2562126, 3581655, 4977867, 6879400, 9457318, 12936609, 17610320, 23863323, 32196090 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Bisection (odd part) of A138880.
LINKS
FORMULA
a(n) = A005408(n)*A182747(n).
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+1, 2*n+1)[2]:
seq(a(n), n=0..34); # Alois P. Heinz, Dec 03 2010
MATHEMATICA
b[n_, i_] := b[n, i] = Module[{p, q}, Which[n<0, {0, 0}, n == 0, {1, 0}, i<2, {0, 0}, True, {p, q} = {b[n, i-1], b[n-i, i]}; {p[[1]] + q[[1]], p[[2]] + q[[2]] + q[[1]]*i}]]; a[n_] := b[2*n + 1, 2*n+1][[2]]; Table[ a[n], {n, 0, 34}] (* Jean-François Alcover, Nov 11 2015, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A221647 A062431 A034351 * A320244 A128135 A350551
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 May 11 19:43 EDT 2024. Contains 372413 sequences. (Running on oeis4.)