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.

A197598 Floor((9n+1/n)^n).

Original entry on oeis.org

10, 342, 20421, 1726760, 188665362, 25257633873, 4001931082417, 732295911309956, 151957855559538858, 35257207352182955134, 9044237131202445725077, 2541585712463861383036826, 776473970630759909605090447, 256232041409079180707274204957
Offset: 1

Views

Author

Vincenzo Librandi, Oct 17 2011

Keywords

Crossrefs

Cf. A014052.

Programs

  • Magma
    [Floor((9*n+1/n)^n): n in [1..20]]
    
  • Mathematica
    Table[Floor[(9n+1/n)^n],{n,20}] (* Harvey P. Dale, Nov 07 2019 *)
  • PARI
    a(n)=floor((9*n+1/n)^n) \\ Charles R Greathouse IV, Dec 27 2011