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

A134886
a(n) = floor(n^sqrt(2)).
4
1, 2, 4, 7, 9, 12, 15, 18, 22, 25, 29, 33, 37, 41, 46, 50, 54, 59, 64, 69, 74, 79, 84, 89, 94, 100, 105, 111, 116, 122, 128, 134, 140, 146, 152, 158, 165, 171, 177, 184, 190, 197, 204, 210, 217, 224, 231, 238, 245
OFFSET
1,2
LINKS
William A. Tedeschi, Table of n, a(n) for n=1..10000
MATHEMATICA
Table[Floor[n^sqrt[2]], {n, 1, 100}] (* G. C. Greubel, Jan 27 2018 *)
PROG
(PARI) a(n) = floor(n^sqrt(2)) \\ Michel Marcus, Jul 18 2013
(Magma) [Floor(n^Sqrt(2)): n in [1..50]]; // G. C. Greubel, Jan 27 2018
CROSSREFS
Sequence in context: A226595 A031435 A065560 * A024193 A064550 A186357
KEYWORD
nonn
AUTHOR
Rolf Pleisch, Jan 29 2008
STATUS
approved