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.

A155018 Integer part of square root of n^15 = A010803(n).

Original entry on oeis.org

0, 1, 181, 3787, 32768, 174692, 685700, 2178889, 5931641, 14348907, 31622776, 64631634, 124125023, 226242995, 394421215, 661735513, 1073741824, 1691869691, 2597429617, 3896296578, 5724334022, 8253624572, 11699575548, 16328969210
Offset: 0

Views

Author

Keywords

Crossrefs

Integer part of square root of n^k: A000196 (k=1), A000093 (k=3), A155013 (k=5), A155014 (k=7), A155015 (k=11), A155016 (k=13), this sequence (k=15), A155019 (k=17).

Programs

  • Magma
    [Floor(Sqrt(n^15)): n in [1..30]]; // G. C. Greubel, Dec 30 2017
  • Mathematica
    a={};Do[AppendTo[a,IntegerPart[(n^15)^(1/2)]],{n,0,5!}];a
    Table[Floor[Sqrt[n^15]], {n,1,30}] (* G. C. Greubel, Dec 30 2017 *)
  • PARI
    for(n=1,30, print1(floor(sqrt(n^15)), ", ")) \\ G. C. Greubel, Dec 30 2017
    

Extensions

Offset corrected by Alois P. Heinz, Sep 27 2014