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

%I #22 Apr 28 2021 02:03:15

%S 0,1,706,1745731,11575291716,170271339664581,4874795836698898566,

%T 247120020454614424554375,20656593715240068513643845000,

%U 2693397991748017956223512587135625,523998492940635622166679925147692626250

%N a(n) = ((2*n+1)!!)^4 * (Sum_{k=1..n} 1/(2*k+1)^4).

%F a(n) = ((2*n-1)^4+(2*n+1)^4) * a(n-1) - (2*n-1)^8 * a(n-2) for n>1.

%F a(n) ~ (Pi^4/96 - 1) * 2^(4*n + 6) * n^(4*n + 4) / exp(4*n). - _Vaclav Kotesovec_, Sep 25 2020

%t a[n_] := ((2*n + 1)!!)^4 * Sum[1/(2*k + 1)^4, {k, 1, n}]; Array[a, 11, 0] (* _Amiram Eldar_, Apr 28 2021 *)

%o (PARI) {a(n) = prod(k=1, n, 2*k+1)^4*sum(k=1, n, 1/(2*k+1)^4)}

%o (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))}

%Y Column k=4 of A335095.

%Y Cf. A291586, A334670, A335090, A335091.

%K nonn

%O 0,3

%A _Seiichi Manyama_, Sep 12 2020

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 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)