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!)
A333772 a(n) = n * 2^n * (n!)^2. 0
2, 32, 864, 36864, 2304000, 199065600, 22759833600, 3329438515200, 606790169395200, 134842259865600000, 35895009576222720000, 11277559372311429120000, 4129466323494701629440000, 1743270091026070964797440000, 840505222458998500884480000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sum_{n>=1} a(n) / (2*n)! = Pi + 3.
LINKS
EXAMPLE
a(2) = 2 * 2^2 * ( 2! )^2 = 2 * 4 * 4 = 32.
a(3) = 3 * 2^3 * ( 3! )^2 = 3 * 8 * 36 = 864.
Sum_{n=1..10} a(n) / ( 2n )! = 3 + 3.01310...
Sum_{n=1..12} a(n) / ( 2n )! = 3 + 3.10046...
Sum_{n=1..18} a(n) / ( 2n )! = 3 + 3.14046...
Sum_{n=1..20} a(n) / ( 2n )! = 3 + 3.14126...
Sum_{n=1..23} a(n) / ( 2n )! = 3 + 3.14154...
PROG
(Rexx)
S = 2
do N = 2 while length( S ) < 255
S = S || ', ' || N * ( 2 ** N ) * ( !( N ) ** 2 )
end N
say S ; return S
CROSSREFS
Cf. A001044 ( (n!)^2 ), A010050 ( (2n)! ), A000796 (digits of Pi).
Sequence in context: A354382 A202408 A069182 * A012233 A321712 A211488
KEYWORD
nonn
AUTHOR
Frank Ellermann, Apr 05 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 April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)