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”).

A089815
a(n) = floor((n+2)^(n+2)/((n+2)^2-1)).
2
1, 3, 17, 130, 1333, 17157, 266305, 4842756, 101010101, 2377597255, 62350352785, 1802828015430, 56984650387477, 1954883439200265, 72340172838076673, 2872362020438669320, 121815504877079063701, 5495610154611982192011, 262801002506265664160401
OFFSET
0,2
LINKS
MAPLE
A089815:=n->floor((n+2)^(n+2)/((n+2)^2-1)): seq(A089815(n), n=0..30); # Wesley Ivan Hurt, Apr 11 2017
MATHEMATICA
Table[Floor[(n + 2)^(n + 2)/((n + 2)^2 - 1)], {n, 0, 50}] (* G. C. Greubel, Oct 10 2017 *)
PROG
(PARI) for(n=0, 50, print1(floor((n+2)^(n+2)/((n+2)^2-1)), ", ")) \\ G. C. Greubel, Oct 10 2017
(Magma) [Floor((n+2)^(n+2)/((n+2)^2-1)): n in [0..50]]; // G. C. Greubel, Oct 10 2017
KEYWORD
nonn
AUTHOR
Paul Barry, Nov 12 2003
STATUS
approved