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

A197708
a(n) = floor((n+1/n)^7).
2
128, 610, 4572, 25045, 102807, 339119, 948645, 2337564, 5211939, 10721353, 20642867, 37610342, 65394162, 109236388, 176246402, 275862066, 420381442, 625570111, 911349137, 1302568701, 1829872465, 2530657691, 3450136161, 4642500937, 6172204001, 8115349815
OFFSET
1,1
LINKS
FORMULA
For n > 35, a(n) = n^7 + 7*n^5 + 21*n^3 + 35*n. - Charles R Greathouse IV, Dec 27 2011
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8). - Wesley Ivan Hurt, Apr 17 2023
MATHEMATICA
Table[Floor[(n + 1/n)^7], {n, 40}] (* T. D. Noe, Dec 27 2011 *)
PROG
(Magma) [Floor((n+1/n)^7): n in [1..40]]
(PARI) a(n)=floor((n+1/n)^7) \\ Charles R Greathouse IV, Dec 27 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Oct 18 2011
STATUS
approved