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!)
A099765 a(n) = (1/Pi)*(2^n/n)*(n-1)!*Integral_{t>=0} (sin(t)/t)^n dt. 5
1, 1, 2, 8, 46, 352, 3364, 38656, 519446, 7996928, 138826588, 2683604992, 57176039628, 1331300646912, 33636118326984, 916559498182656, 26795449170328038, 836606220759859200, 27784046218331805100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Sergey Fomin and Grigory Mikhalkin, Labeled floor diagrams for plane curves, arXiv:0906.3828 [math.AG], 2009-2010. [From N. J. A. Sloane, Sep 27 2010]
W. Trump, Magic series.
Eric Weisstein's World of Mathematics, Sinc Function
FORMULA
a(n) = (1/n) * Sum_{k=0, floor(n/2)} (-1)^k * binomial(n, k) * (n-2*k)^(n-1).
a(n) = A261398(n)/n. - Vladimir Reshetnikov, Sep 05 2016
MATHEMATICA
Table[1/n Sum[(-1)^k Binomial[n, k](n-2k)^(n-1), {k, 0, Floor[n/2]}], {n, 20}] (* Harvey P. Dale, Oct 21 2011 *)
PROG
(PARI) a(n)=(1/n)*sum(k=0, floor(n/2), (-1)^k*binomial(n, k)*(n-2*k)^(n-1))
(Magma) [(1/n)*(&+[(-1)^j*Binomial(n, j)*(n-2*j)^(n-1): j in [0..Floor(n/2)]]): n in [1..25]]; // G. C. Greubel, Apr 01 2022
(Sage) [(1/n)*sum((-1)^j*binomial(n, j)*(n-2*j)^(n-1) for j in (0..(n//2))) for n in (1..25)] # G. C. Greubel, Apr 01 2022
CROSSREFS
Sequence in context: A300696 A074599 A007289 * A246386 A096656 A297014
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Nov 11 2004, Dec 11 2007
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 15 16:29 EDT 2024. Contains 372548 sequences. (Running on oeis4.)