(Translated by https://www.hiragana.jp/)
A335092 - OEIS
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!)
A335092 a(n) = ((2*n+1)!!)^4 * (Sum_{k=1..n} 1/(2*k+1)^4). 3
0, 1, 706, 1745731, 11575291716, 170271339664581, 4874795836698898566, 247120020454614424554375, 20656593715240068513643845000, 2693397991748017956223512587135625, 523998492940635622166679925147692626250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = ((2*n-1)^4+(2*n+1)^4) * a(n-1) - (2*n-1)^8 * a(n-2) for n>1.
a(n) ~ (Pi^4/96 - 1) * 2^(4*n + 6) * n^(4*n + 4) / exp(4*n). - Vaclav Kotesovec, Sep 25 2020
MATHEMATICA
a[n_] := ((2*n + 1)!!)^4 * Sum[1/(2*k + 1)^4, {k, 1, n}]; Array[a, 11, 0] (* Amiram Eldar, Apr 28 2021 *)
PROG
(PARI) {a(n) = prod(k=1, n, 2*k+1)^4*sum(k=1, n, 1/(2*k+1)^4)}
(PARI) {a(n) = if(n<2, n, ((2*n-1)^4+(2*n+1)^4)*a(n-1)-(2*n-1)^8*a(n-2))}
CROSSREFS
Column k=4 of A335095.
Sequence in context: A126830 A005845 A183795 * A252692 A074869 A212476
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 12 2020
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 June 10 03:52 EDT 2024. Contains 373253 sequences. (Running on oeis4.)