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.

A197910 Ceiling((n+1/2)^n).

Original entry on oeis.org

2, 7, 43, 411, 5033, 75419, 1334839, 27249053, 630249410, 16288946268, 465239139607, 14551915228367, 494696673952512, 18161513224841276, 716102966059713316, 30181658957863752410, 1354087807629298185930, 64430442087414935111822, 3240840189607299761533536
Offset: 1

Views

Author

Vincenzo Librandi, Oct 19 2011

Keywords

Crossrefs

Cf. A014058.

Programs

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