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!)
A344556 a(n) = [x^n] 2 / (1 - (2*n - 1)*x + sqrt(1 - 2*x - 3*x^2)). 0
1, 1, 5, 34, 315, 3741, 54531, 944035, 18934763, 431773963, 11030464423, 312023972228, 9680623848325, 326823162461823, 11926991260987869, 467837288974848642, 19628089812933434547, 877052336082168698715, 41581946832665768549007, 2084818230218269733957646 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Main diagonal of A344567.
LINKS
FORMULA
a(n) = Sum_{j=0..n} (n - 1)^j*binomial(n, j)*hypergeom([(j - n)/2, (j - n + 1)/2], [j + 2], 4).
a(n) ~ n^n * (1 + 1/n + 1/(2*n^2) - 4/(3*n^3) - 119/(24*n^4) - 1249/(120*n^5) - ...). - Vaclav Kotesovec, May 24 2021
MAPLE
aList := proc(len) 2 / (1 - (2*n - 1)*x + sqrt(1 - 2*x - 3*x^2));
seq(coeff(series(%, x, len+2), x, n), n = 0..len) end: aList(19);
MATHEMATICA
Unprotect[Power]; 0^0 := 1;
a[n_] := Sum[(n-1)^j Binomial[n, j] Hypergeometric2F1[(j - n)/2, (j - n + 1)/2, j + 2, 4], {j, 0, n}]; Table[a[n], {n, 0, 19}]
CROSSREFS
Cf. A344567.
Sequence in context: A258179 A068475 A097817 * A303175 A357422 A197714
KEYWORD
nonn
AUTHOR
Peter Luschny, May 24 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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)