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.

Original entry on oeis.org

0, 1, 5792, 920482, 33554432, 545915033, 5332006004, 36620603758, 194368031998, 847288609443, 3162277660168, 10408989356987, 30886277963534, 84002440529229, 212129196024140, 502505405881790, 1125899906842624
Offset: 0

Views

Author

Karl V. Keller, Jr., Oct 02 2014

Keywords

Examples

			For n = 4, floor(sqrt(n^25)) = 33554432.
		

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)).