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.

A197766 Ceiling((6n+1/n)^n).

Original entry on oeis.org

7, 157, 6163, 345818, 25120873, 2237952688, 236084694123, 28771727614750, 3977205817386553, 614815375624938277, 105089416995538138498, 19679693805738843682351, 4006775128162674717660622, 881207085092349552894218730, 208190711541113653367733416164
Offset: 1

Views

Author

Vincenzo Librandi, Oct 18 2011

Keywords

Crossrefs

Cf. A014058.

Programs

  • Magma
    [Ceiling((6*n+1/n)^n): n in [1..20]]
    
  • Mathematica
    Table[Ceiling[(6n+1/n)^n],{n,20}] (* Harvey P. Dale, Jun 06 2020 *)
  • PARI
    a(n)=ceil((6*n+1/n)^n) \\ Charles R Greathouse IV, Nov 21 2011