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.

A197600 Floor((11n+1/n)^n).

Original entry on oeis.org

12, 506, 37037, 3834008, 512501792, 83914215402, 16258109291002, 3637416562713075, 922786228220640101, 261741863272493596614, 82078032321730681299097, 28195269239973685901676782, 10529425953839699619063326835, 4247266693140960691762845677068
Offset: 1

Views

Author

Vincenzo Librandi, Oct 17 2011

Keywords

Crossrefs

Cf. A014052.

Programs

  • Magma
    [Floor((11*n+1/n)^n): n in [1..20]]
    
  • Mathematica
    Table[Floor[(11*n + 1/n)^n], {n, 40}] (* T. D. Noe, Dec 27 2011 *)
  • PARI
    a(n)=floor((11*n+1/n)^n) \\ Charles R Greathouse IV, Dec 27 2011