OFFSET
0,3
COMMENTS
Floor(sqrt((2*n)^n)) = floor(sqrt((2*n)^n+1)) since the +1 within the square root function is unneeded for n > 0 and also at n=0, since 0^0 = 1 (interpreted algebraically, à la Knuth). - Greg Huber, Aug 07 2018
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..640 (terms 0..50 from Vincenzo Librandi)
D. E. Knuth, Two Notes on Notation, The American Mathematical Monthly, 99 (1992), 403-422.
MATHEMATICA
Join[{1}, Floor[Sqrt[Array[(2 #)^# + 1 &, 30]]]]
PROG
(Magma) [Floor(Sqrt((2*n)^n+1)): n in [0..30]];
(PARI) vector(30, n, n--; floor(sqrt((2*n)^n))) \\ G. C. Greubel, Aug 19 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 27 2014
EXTENSIONS
Name edited by Greg Huber, Aug 07 2018
STATUS
approved