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”).

A277050
a(n) = floor(2*n/sqrt(Pi)).
2
0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75
OFFSET
0,3
FORMULA
a(n) = floor(2*n/sqrt(Pi)).
MAPLE
A277050:=n->floor(2*n/sqrt(Pi)): seq(A277050(n), n=0..100); # Wesley Ivan Hurt, Sep 26 2016
MATHEMATICA
Table[Floor[2 * n/Sqrt[Pi]], {n, 100}]
PROG
(PARI) a(n) = floor(2*n/sqrt(Pi));
CROSSREFS
Cf. A037086, A190732, A277052 (complement).
Sequence in context: A052421 A248375 A037477 * A013937 A118065 A020661
KEYWORD
nonn,easy
AUTHOR
STATUS
approved