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!)
A322132 Number of compositions of n that can be rearranged into a palindrome. 2
1, 1, 2, 2, 6, 8, 18, 26, 56, 90, 202, 320, 730, 1154, 2592, 4130, 9522, 15208, 35330, 56746, 131352, 212074, 492570, 795920, 1855706, 3006482, 7016464, 11406930, 26635154, 43409752, 101387602, 165798282, 386965208, 635250986, 1480773866, 2439516656, 5678477866 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Equivalently, the number of compositions of n with at most one part size having odd multiplicity.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..1000 (first 201 terms from Andrew Howroyd)
EXAMPLE
Case n=4: The 6 compositions are: 4, 211, 121, 112, 22, 1111.
Case n=5: The 8 compositions are: 5, 311, 131, 113, 122, 212, 221, 11111.
MAPLE
b:= proc(n, i, p, t) option remember; `if`(n=0 or i=1,
`if`(t and n::odd, 0, (n+p)!/n!), add(`if`(t and j::odd,
0, b(n-i*j, i-1, p+j, t or j::odd))/j!, j=0..n/i))
end:
a:= n-> b(n$2, 0, false):
seq(a(n), n=0..40); # Alois P. Heinz, Dec 02 2018
MATHEMATICA
b[n_, i_, p_, t_] := b[n, i, p, t] = If[n == 0 || i == 1, If[t && OddQ[n], 0, (n+p)!/n!], Sum[If[t && OddQ[j], 0, b[n-i*j, i-1, p+j, t || OddQ[j]]]/ j!, {j, 0, n/i}]];
a[n_] := b[n, n, 0, False];
Table[a[n], {n, 0, 40}] (* Jean-François Alcover, Aug 13 2019, after Alois P. Heinz *)
PROG
(PARI) a(n)={sum(k=0, n\2, my(p=prod(i=1, k, 1 + sum(j=1, k\i, x^(i*j)*y^(2*j)/(2*j + (i==n-2*k))!) + O(x*x^k))); subst(serlaplace(polcoef(p, k)*y^(2*k<n)), y, 1))}
CROSSREFS
Sequence in context: A136513 A365662 A214932 * A054153 A000673 A355640
KEYWORD
nonn
AUTHOR
Andrew Howroyd, Nov 27 2018
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 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)