cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A248132 Integer part of square root of A010813(n) = n^25.

This page as a plain text file.
%I A248132 #15 Nov 11 2024 03:46:19
%S A248132 0,1,5792,920482,33554432,545915033,5332006004,36620603758,
%T A248132 194368031998,847288609443,3162277660168,10408989356987,
%U A248132 30886277963534,84002440529229,212129196024140,502505405881790,1125899906842624
%N A248132 Integer part of square root of A010813(n) = n^25.
%H A248132 Karl V. Keller, Jr., <a href="/A248132/b248132.txt">Table of n, a(n) for n = 0..1000</a>
%F A248132 a(n) = floor(sqrt(n^25)).
%e A248132 For n = 4, floor(sqrt(n^25)) = 33554432.
%t A248132 Table[Floor[Sqrt[n^25]],{n,0,20}] (* _Harvey P. Dale_, Aug 27 2017 *)
%o A248132 (Python)
%o A248132 from math import isqrt
%o A248132 print([isqrt(n**25) for n in range(0, 21)])
%Y A248132 Cf. A010813 (n^25).
%K A248132 nonn
%O A248132 0,3
%A A248132 _Karl V. Keller, Jr._, Oct 02 2014