login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A271208 a(n) = n^5 + n - 1. 2
-1, 1, 33, 245, 1027, 3129, 7781, 16813, 32775, 59057, 100009, 161061, 248843, 371305, 537837, 759389, 1048591, 1419873, 1889585, 2476117, 3200019, 4084121, 5153653, 6436365, 7962647, 9765649, 11881401, 14348933, 17210395, 20511177, 24300029, 28629181, 33554463 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = A271209(n) - 2.
From Wesley Ivan Hurt, Apr 02 2016: (Start)
G.f.: (-1 + 7*x + 12*x^2 + 82*x^3 + 17*x^4 + 3*x^5) / (x-1)^6.
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5)- a (n-6), n > 5. (End)
a(n) = A131471(n) - 1. - Omar E. Pol, Apr 05 2016
MAPLE
A271208:=n->n^5 + n - 1: seq(A271208(n), n=0..40); # Wesley Ivan Hurt, Apr 02 2016
MATHEMATICA
Table[n^5+n-1, {n, 0, 100}] (* Waldemar Puszkarz, Apr 02, 2016 *)
LinearRecurrence[{6, -15, 20, -15, 6, -1}, {-1, 1, 33, 245, 1027, 3129}, 40] (* Harvey P. Dale, Sep 02 2020 *)
PROG
(Magma) [n^5+n-1: n in [0..100]]
(PARI) for(n=0, 100, print1(n^5+n-1, ", ")) \\ Waldemar Puszkarz, Apr 02 2016
CROSSREFS
Sequence in context: A017673 A001160 A294300 * A343499 A318744 A184059
KEYWORD
sign,easy
AUTHOR
Jaroslav Krizek, Apr 02 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:02 EDT 2024. Contains 371918 sequences. (Running on oeis4.)