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”).

A354659
A diagonal of triangle A354650: a(n) = A354650(n,n+1), for n >= 0.
5
1, 3, 30, 390, 5928, 98910, 1757688, 32683680, 628884300, 12428334215, 250940544738, 5156722096422, 107538413657010, 2270751678647100, 48464836803383400, 1044050265679857144, 22675350105240015204, 496034970650911331550, 10920742396832034391590
OFFSET
0,2
LINKS
FORMULA
a(n) = A354649(n,n+1), for n >= 0.
a(n) = A354650(n,n+1), for n >= 0.
a(n) ~ c * d^n / n^2, where d = 24.5759928778699928131449756... and c = 0.35661791857107638456206... - Vaclav Kotesovec, Mar 19 2023
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+1), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 02 2022
STATUS
approved