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!)
A163585 a(n) = floor((4*Pi)^n * n!). 1
1, 12, 315, 11906, 598481, 37603698, 2835252098, 249401800589, 25072603664742, 2835644669262813, 356337618445884526, 49256576349520039506, 7427716723230571769719, 1213412735113655221460574, 213474717926699991459606943, 40239036333940441855233097277 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = floor((4*Pi)^n * n!).
EXAMPLE
a(5) = 37603698 = floor(2^(2 * 5) * Pi^5 * 120) = floor (37603698.9).
MATHEMATICA
Table[Floor[4^n*(Pi^n)*n!], {n, 0, 50}] (* G. C. Greubel, Jul 28 2017 *)
PROG
(PARI) A163585(n)={ floor((4*Pi)^n*n!) }
{ realprecision=120 ; for(n=1, 20, print1(A163585(n), ", ") ; ); } \\ R. J. Mathar, Aug 07 2009
(Python)
from mpmath import mp, pi, fac
mp.dps = 120
def a(n): return int(floor((4*pi)**n*fac(n)))
print([a(n) for n in range(21)]) # Indranil Ghosh, Jul 28 2017
CROSSREFS
Sequence in context: A060010 A129583 A323839 * A341185 A279293 A180790
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jul 31 2009
EXTENSIONS
More terms from R. J. Mathar, Aug 07 2009
New name using formula, Joerg Arndt, Jul 30 2017
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 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)