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.

A155015 Integer part of square root of n^11 = A008455(n).

Original entry on oeis.org

0, 1, 45, 420, 2048, 6987, 19047, 44467, 92681, 177147, 316227, 534145, 861979, 1338715, 2012353, 2941046, 4194304, 5854220, 8016758, 10793065, 14310835, 18715701, 24172676, 30867616, 39008731, 48828125, 60583368, 74559107
Offset: 0

Views

Author

Keywords

Programs

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

Extensions

Offset corrected by Alois P. Heinz, Sep 27 2014