OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = floor(n*sqrt(10)).
MATHEMATICA
Table[Floor[n*Sqrt[10]], {n, 1, 100}]
PROG
(Magma) [Floor(n*Sqrt(10)): n in [1..60]]; // Vincenzo Librandi, Oct 24 2011
(PARI) for(n=1, 50, print1(floor(n*sqrt(10)), ", ")) \\ G. C. Greubel, Sep 24 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 16 2011
STATUS
approved