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!)
A027191 Number of partitions of n into an odd number of parts, the least being 5; also, a(n+5) = number of partitions of n into an even number of parts, each >=5. 3
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 7, 7, 9, 10, 13, 14, 18, 20, 25, 28, 35, 39, 48, 54, 65, 74, 89, 100, 119, 135, 160, 181, 213, 241, 282, 320, 372, 422, 490, 554, 641, 726, 836, 946, 1087, 1229, 1408, 1591, 1817, 2052, 2341, 2639, 3002, 3384 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,17
LINKS
FORMULA
a(n) = A026798(n) - A027197(n). - Jean-François Alcover, Feb 06 2020
G.f.: x^5 * Sum_{k>=0} x^(10*k)/Product_{j=1..2*k} (1-x^j). - Seiichi Manyama, May 15 2023
MATHEMATICA
b[n_, i_, t_] := b[n, i, t] = If[n == 0, t, If[i > n, 0, b[n, i + 1, t] + b[n - i, i, 1 - t]]];
a027197[n_] := If[n < 5, 0, b[n - 5, 5, 0]];
a026798[n_] := SeriesCoefficient[x^5/QPochhammer[x^5, x], {x, 0, n}];
a[n_] := a026798[n] - a027197[n];
a /@ Range[55] (* Jean-François Alcover, Feb 06 2020, after Alois P. Heinz in A027197 *)
CROSSREFS
Sequence in context: A026801 A185328 A210718 * A122522 A227614 A236473
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Seiichi Manyama, May 15 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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)