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.

A242038 Integer part of square root of A010809(n) = n^21.

Original entry on oeis.org

0, 1, 1448, 102275, 2097152, 21836601, 148111277, 747359260, 3037000499, 10460353203, 31622776601, 86024705429, 214488041413, 497055861119, 1082291816449, 2233357359474, 4398046511104, 8312155792152, 15148209527700, 26724698233906
Offset: 0

Views

Author

Karl V. Keller, Jr., Oct 01 2014

Keywords

Examples

			For n = 4, floor(sqrt(4^21)) = 2097152.
		

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