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.

A197770 Ceiling((10*n+1/n)^n).

Original entry on oeis.org

11, 421, 27911, 2624603, 318800201, 47439020042, 8353801755007, 1698808167100876, 391746480089540116, 101004512021025221013, 28791615763253886202481, 8990685731188213404550239, 3052132045866636492112058600, 1119164206256115117485135326642, 440822282742124422495281791483359
Offset: 1

Views

Author

Vincenzo Librandi, Oct 19 2011

Keywords

Crossrefs

Programs

  • Magma
    [Ceiling((10*n+1/n)^n): n in [1..20]]
  • Maple
    A197770:=n->ceil((10*n+1/n)^n); seq(A197770(n), n=1..20); # Wesley Ivan Hurt, Jun 14 2014
  • Mathematica
    Table[Ceiling[(10n+1/n)^n],{n,20}] (* Harvey P. Dale, Dec 03 2012 *)