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

A277052
a(n) = n+floor(n/(2/sqrt(Pi)-1)).
2
8, 17, 26, 35, 43, 52, 61, 70, 79, 87, 96, 105, 114, 123, 131, 140, 149, 158, 166, 175, 184, 193, 202, 210, 219, 228, 237, 246, 254, 263, 272, 281, 290, 298, 307, 316, 325, 333, 342, 351, 360, 369, 377, 386, 395, 404, 413, 421, 430, 439, 448, 457, 465, 474
OFFSET
1,1
LINKS
FORMULA
a(n) = n + floor(n/(2/sqrt(Pi) - 1)).
MAPLE
A277052:=n->n+floor(n/(2/sqrt(Pi)-1)): seq(A277052(n), n=1..100); # Wesley Ivan Hurt, Sep 26 2016
MATHEMATICA
f[n_] := n + Floor[n/(2/Sqrt[Pi]-1)]; Array[f, 100, 1]
PROG
(PARI) a(n) = n + floor(n/(2/sqrt(Pi)-1));
CROSSREFS
Complement of A277050.
Sequence in context: A041122 A042211 A290227 * A305496 A338090 A043485
KEYWORD
nonn,easy
AUTHOR
STATUS
approved