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!)
A335091 a(n) = ((2*n+1)!!)^3 * (Sum_{k=1..n} 1/(2*k+1)^3). 3
0, 1, 152, 55511, 41625144, 56246975289, 124697847089808, 423322997436687375, 2088114588247920714000, 14363296872939657999716625, 133299155158711610547152961000, 1624450039177408057102079622846375, 25413656551949715361011431877529125000, 500711137690193661025654228810320074015625 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = ((2*n-1)^3+(2*n+1)^3) * a(n-1) - (2*n-1)^6 * a(n-2) for n>1.
a(n) ~ (7*zeta(3)/8 - 1) * 2^(3*n + 9/2) * n^(3*n + 3) / exp(3*n). - Vaclav Kotesovec, Sep 25 2020
MATHEMATICA
a[n_] := ((2*n + 1)!!)^3 * Sum[1/(2*k + 1)^3, {k, 1, n}]; Array[a, 14, 0] (* Amiram Eldar, Apr 29 2021 *)
PROG
(PARI) {a(n) = prod(k=1, n, 2*k+1)^3*sum(k=1, n, 1/(2*k+1)^3)}
(PARI) {a(n) = if(n<2, n, ((2*n-1)^3+(2*n+1)^3)*a(n-1)-(2*n-1)^6*a(n-2))}
CROSSREFS
Column k=3 of A335095.
Sequence in context: A035823 A265861 A208484 * A323319 A157881 A370312
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 11 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 May 13 19:11 EDT 2024. Contains 372522 sequences. (Running on oeis4.)