login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A248132
Integer part of square root of A010813(n) = n^25.
1
0, 1, 5792, 920482, 33554432, 545915033, 5332006004, 36620603758, 194368031998, 847288609443, 3162277660168, 10408989356987, 30886277963534, 84002440529229, 212129196024140, 502505405881790, 1125899906842624
OFFSET
0,3
LINKS
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 decimal import *
getcontext().prec = 100
for n in range(0, 1001): print int(Decimal(n**25).sqrt())
CROSSREFS
Cf. A010813 (n^25).
Sequence in context: A114361 A235086 A098476 * A238553 A282335 A164649
KEYWORD
nonn
AUTHOR
Karl V. Keller, Jr., Oct 02 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 22 12:51 EDT 2024. Contains 376114 sequences. (Running on oeis4.)