login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A354658
A diagonal of triangle A354650: a(n) = A354650(n,n), for n >= 0.
6
1, 3, 27, 340, 5070, 83559, 1472261, 27205308, 520974180, 10257025240, 206469879462, 4232227325352, 88073315164471, 1856404180514940, 39560345751767970, 851083806077023888, 18462636758298743712, 403459312929849694791, 8874351725505564788350
OFFSET
0,2
LINKS
FORMULA
a(n) = -A354649(n,n), for n >= 0.
a(n) = A354650(n,n), for n >= 0.
a(n) ~ c * d^n / n^2, where d = 24.575992877869992813144975... and c = 0.285171824264368179079895... - Vaclav Kotesovec, Jun 08 2022
PROG
(PARI) {A354650(n, k) = my(A=[1+y]); for(i=1, n, A = concat(A, 0);
A[#A] = polcoeff(y + sum(m=0, sqrtint(2*#A+9), (-1)^m * x^(m*(m-1)/2) * (1 - x^(2*m+1)) * Ser(A)^(m*(m+1)/2) ), #A-1) );
polcoeff(A[n+1], k, y)}
for(n=0, 20, print1(A354650(n, n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 02 2022
STATUS
approved