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

A197712
a(n) = floor((n+1/2)^n).
1
1, 6, 42, 410, 5032, 75418, 1334838, 27249052, 630249409, 16288946267, 465239139606, 14551915228366, 494696673952511, 18161513224841275, 716102966059713315, 30181658957863752409, 1354087807629298185929, 64430442087414935111821, 3240840189607299761533535, 171821387249394349577932210
OFFSET
1,2
LINKS
MAPLE
A197712:=n->floor((n+1/2)^n): seq(A197712(n), n=1..25); # Wesley Ivan Hurt, Apr 18 2017
MATHEMATICA
Table[Floor[(n+1/2)^n], {n, 30}] (* Harvey P. Dale, Nov 15 2013 *)
PROG
(Magma) [Floor((n+1/2)^n): n in [1..20]]
CROSSREFS
Cf. A014052.
Sequence in context: A304071 A052608 A245248 * A377535 A306173 A254529
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Oct 18 2011
STATUS
approved