OFFSET
1,2
COMMENTS
The fractalization of this sequence is A194980.
Least number k such that k*tan(1/k) - 1 < 1/n^2. - Clark Kimberling, Dec 02 2014
The integers k such that a(k) = a(k+1) give A054406. - Michel Marcus, Nov 01 2021
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = 1 + A097337(n).
MATHEMATICA
p[n_]:=1+Floor[n/Sqrt[3]]
Table[p[n], {n, 1, 90}] (* A194979 *)
PROG
(Magma) [1+Floor(n/Sqrt(3)): n in [1..80] ]; // Vincenzo Librandi, Sep 10 2011
(PARI) a(n)=1+sqrtint(n^2\3) \\ Charles R Greathouse IV, Sep 02 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 07 2011
STATUS
approved