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.

A197765 a(n) = ceiling((5n+1/n)^n).

Original entry on oeis.org

6, 111, 3606, 168152, 10162551, 753640011, 66200225627, 6719243243860, 773662803646265, 99627047203913815, 14186632841753756406, 2213340465298424454703, 375449162169269152689332, 68797650004483898373052061, 13542753444466024362689788809
Offset: 1

Views

Author

Vincenzo Librandi, Oct 18 2011

Keywords

Crossrefs

Cf. A014058.

Programs

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