A242038 Integer part of square root of A010809(n) = n^21.
0, 1, 1448, 102275, 2097152, 21836601, 148111277, 747359260, 3037000499, 10460353203, 31622776601, 86024705429, 214488041413, 497055861119, 1082291816449, 2233357359474, 4398046511104, 8312155792152, 15148209527700, 26724698233906
Offset: 0
Keywords
Examples
For n = 4, floor(sqrt(4^21)) = 2097152.
Links
- Karl V. Keller, Jr., Table of n, a(n) for n = 0..1000
Crossrefs
Cf. A010809 (n^21).
Programs
-
PARI
a(n) = sqrtint(n^21) \\ Michel Marcus, Oct 01 2014
-
Python
from decimal import * getcontext().prec = 100 for n in range(0,1001): print(int(Decimal(n**21).sqrt()))
Formula
a(n) = floor(sqrt(n^21)).