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!)
A293353 Least integer k such that k/2^n > Euler's constant (0.577216...). 3
1, 2, 3, 5, 10, 19, 37, 74, 148, 296, 592, 1183, 2365, 4729, 9458, 18915, 37829, 75657, 151314, 302628, 605255, 1210509, 2421018, 4842036, 9684072, 19368144, 38736288, 77472576, 154945151, 309890301, 619780601, 1239561202, 2479122404, 4958244807, 9916489614 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = ceiling(r*2^n), where r = Euler's constant (0.577216...).
a(n) = A293352(n) + 1.
MATHEMATICA
z = 120; r = EulerGamma;
Table[Floor[r*2^n], {n, 0, z}]; (* A293352 *)
Table[Ceiling[r*2^n], {n, 0, z}]; (* A293353 *)
Table[Round[r*2^n], {n, 0, z}]; (* A293354 *)
PROG
(PARI) for(n=0, 50, print1(ceil(Euler*2^n), ", ")) \\ G. C. Greubel, Aug 29 2018
(Magma) R:= RealField(100); [Ceiling(EulerGamma(R)*2^n) : n in [0..50]]; // G. C. Greubel, Aug 29 2018
CROSSREFS
Sequence in context: A166874 A046630 A177874 * A293328 A064236 A339585
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 07 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 May 12 22:29 EDT 2024. Contains 372497 sequences. (Running on oeis4.)