A248132 Integer part of square root of A010813(n) = n^25.
0, 1, 5792, 920482, 33554432, 545915033, 5332006004, 36620603758, 194368031998, 847288609443, 3162277660168, 10408989356987, 30886277963534, 84002440529229, 212129196024140, 502505405881790, 1125899906842624
Offset: 0
Keywords
Examples
For n = 4, floor(sqrt(n^25)) = 33554432.
Links
- Karl V. Keller, Jr., Table of n, a(n) for n = 0..1000
Crossrefs
Cf. A010813 (n^25).
Programs
-
Mathematica
Table[Floor[Sqrt[n^25]],{n,0,20}] (* Harvey P. Dale, Aug 27 2017 *)
-
Python
from math import isqrt print([isqrt(n**25) for n in range(0, 21)])
Formula
a(n) = floor(sqrt(n^25)).
Comments