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!)
A305197 Number of set partitions of [n] with symmetric block size list of length A004525(n). 4
1, 1, 1, 1, 3, 7, 19, 56, 171, 470, 2066, 10299, 31346, 91925, 559987, 3939653, 11954993, 36298007, 282835456, 2571177913, 7785919355, 24158837489, 229359684137, 2557117944391, 7731656573016, 24350208829581, 272633076900991, 3601150175699409, 10876116332074739 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = A275281(n,(n+sin(n*Pi/2))/2).
MAPLE
b:= proc(n, s) option remember; expand(`if`(n>s,
binomial(n-1, n-s-1)*x, 1)+add(binomial(n-1, j-1)*
b(n-j, s+j)*binomial(s+j-1, j-1), j=1..(n-s)/2)*x^2)
end:
a:= n-> coeff(b(n, 0), x, (n+sin(n*Pi/2))/2):
seq(a(n), n=0..30);
MATHEMATICA
b[n_, s_] := b[n, s] = Expand[If[n > s, Binomial[n - 1, n - s - 1]*x, 1] + Sum[Binomial[n - 1, j - 1]*b[n - j, s + j]*Binomial[s + j - 1, j - 1], {j, 1, (n - s)/2}]*x^2];
a[n_] := Coefficient[b[n, 0], x, (n + Sin[n*Pi/2])/2];
Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Jun 13 2018, from Maple *)
CROSSREFS
Bisections give A275283 (even part), A305198 (odd part).
Sequence in context: A367484 A224031 A147586 * A071716 A306088 A188625
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 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 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)