login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A197770
Ceiling((10*n+1/n)^n).
1
11, 421, 27911, 2624603, 318800201, 47439020042, 8353801755007, 1698808167100876, 391746480089540116, 101004512021025221013, 28791615763253886202481, 8990685731188213404550239, 3052132045866636492112058600, 1119164206256115117485135326642, 440822282742124422495281791483359
OFFSET
1,1
LINKS
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 *)
PROG
(Magma) [Ceiling((10*n+1/n)^n): n in [1..20]]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Oct 19 2011
STATUS
approved