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.

A197716 a(n) = ceiling((2n+1/n)^n).

Original entry on oeis.org

3, 21, 255, 4633, 110409, 3243618, 113177497, 4570858600, 209655304353, 10763674952098, 611433842280388, 38071427445729201, 2578294348444597267, 188670154792420320215, 14834716200104606205408, 1247263229999781126495328, 111661618863544248806155260
Offset: 1

Views

Author

Vincenzo Librandi, Oct 18 2011

Keywords

Crossrefs

Cf. A014058.

Programs

  • Magma
    [Ceiling((2*n+1/n)^n): n in [1..20]]
    
  • Mathematica
    Array[Ceiling[(2*# + 1/#)^#] &, 20] (* Paolo Xausa, Feb 04 2025 *)
  • PARI
    a(n)=ceil((2*n+1/n)^n) \\ Charles R Greathouse IV, Nov 21 2011