The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A346980 a(n) = A152534(n,n). 3
1, 0, 0, 1, 8, 42, 215, 964, 4336, 18490, 78920, 327422, 1361450, 5561651, 22748172, 92064605, 372730314, 1498785098, 6028277742, 24137078144, 96650940881, 385889337069, 1540641044744, 6139148609668, 24462365837156, 97350374411004, 387401219371335 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = A152534(n,n).
MAPLE
f:= proc(n) option remember; `if`(n<2, 1, f(n-1)*(q^n-1)/(q-1)) end:
b:= proc(n, i) option remember; simplify(`if`(n=0 or i=1, 1,
add(b(n-i*j, i-1)/f(i)^j, j=0..n/i)))
end:
a:= n-> coeff(simplify(f(n)*b(n$2)), q, n):
seq(a(n), n=0..26);
MATHEMATICA
f[n_] := f[n] = If[n < 2, 1, f[n - 1]*(q^n - 1)/(q - 1)];
b[n_, i_] := b[n, i] = If[n == 0 || i == 1, 1,
Sum[b[n - i*j, i - 1]/f[i]^j, {j, 0, n/i}]];
a[n_] := SeriesCoefficient[f[n]*b[n, n], {q, 0, n}];
Table[a[n], {n, 0, 26}] (* Jean-François Alcover, Apr 07 2022, after Alois P. Heinz *)
CROSSREFS
Main diagonal of A152534.
Cf. A346981.
Sequence in context: A249977 A037710 A037612 * A047759 A047772 A204565
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 09 2021
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 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)