OFFSET
0,3
LINKS
Karl V. Keller, Jr., Table of n, a(n) for n = 0..1000
FORMULA
a(n) = floor(sqrt(n^25)).
EXAMPLE
For n = 4, floor(sqrt(n^25)) = 33554432.
MATHEMATICA
Table[Floor[Sqrt[n^25]], {n, 0, 20}] (* Harvey P. Dale, Aug 27 2017 *)
PROG
(Python)
from math import isqrt
print([isqrt(n**25) for n in range(0, 21)])
CROSSREFS
KEYWORD
nonn
AUTHOR
Karl V. Keller, Jr., Oct 02 2014
STATUS
approved