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.

A197597 Floor((8n+1/n)^n).

Original entry on oeis.org

9, 272, 14408, 1081730, 104985728, 12487616538, 1758172862979, 285903205720512, 52725376090628155, 10872393464815690143, 2478802987043990078456, 619122710473385614426209, 168115507427305189329095427, 49309285630177314887251611600
Offset: 1

Views

Author

Vincenzo Librandi, Oct 17 2011

Keywords

Crossrefs

Cf. A014052.

Programs

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