login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 07 2017
STATUS
approved