OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
a={}; Do[AppendTo[a, IntegerPart[(n^5)^(1/2)]], {n, 5!}]; a
IntegerPart[Sqrt[Range[50]^5]] (* Harvey P. Dale, May 14 2012 *)
Table[Floor[Sqrt[n^5]], {n, 1, 30}] (* G. C. Greubel, Dec 30 2017 *)
PROG
(PARI) for(n=1, 30, print1(floor(sqrt(n^5)), ", ")) \\ G. C. Greubel, Dec 30 2017
(Magma) [Floor(Sqrt(n^5)): n in [1..30]]; // G. C. Greubel, Dec 30 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jan 19 2009
STATUS
approved