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!)
A180736 a(n) = [r]*[2r]*...[nr], where r=sqrt(2) and []=floor. 6
1, 2, 8, 40, 280, 2240, 20160, 221760, 2661120, 37255680, 558835200, 8941363200, 160944537600, 3057946214400, 64216870502400, 1412771151052800, 33906507625267200, 847662690631680000, 22039229956423680000, 617098438779863040000, 17895854724616028160000, 554771496463096872960000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = [r]*[2r]*...[nr], where r=sqrt(2) and []=floor.
a(n) ~ c * 2^(n/2) * n! / n^(1/(2*sqrt(2))), where c = 0.71779404... - Vaclav Kotesovec, Oct 02 2018
EXAMPLE
a(n) = 1*2*4*5*7*...*floor(n*sqrt(2)).
MAPLE
r:=sqrt(2): seq(mul(floor(k*r), k=1..n), n=1..25); # Muniru A Asiru, Sep 29 2018
MATHEMATICA
Table[Product[Floor[i*Sqrt[2]], {i, n}], {n, 1, 25}] (* modified by G. C. Greubel, Sep 29 2018 *)
PROG
(PARI) for(n=1, 25, print1(prod(j=1, n, floor(j*sqrt(2))), ", ")) \\ G. C. Greubel, Sep 29 2018
(Magma) [(&*[Floor(j*Sqrt(2)): j in [1..n]]): n in [1..25]]; // G. C. Greubel, Sep 29 2018
CROSSREFS
Sequence in context: A000828 A296676 A281910 * A111394 A140363 A280921
KEYWORD
nonn,nice
AUTHOR
Clark Kimberling, Jan 22 2011
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 21 22:16 EDT 2024. Contains 372741 sequences. (Running on oeis4.)