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!)
A100040 a(n) = 2*n^2 + n - 5. 14
-5, -2, 5, 16, 31, 50, 73, 100, 131, 166, 205, 248, 295, 346, 401, 460, 523, 590, 661, 736, 815, 898, 985, 1076, 1171, 1270, 1373, 1480, 1591, 1706, 1825, 1948, 2075, 2206, 2341, 2480, 2623, 2770, 2921, 3076, 3235, 3398, 3565, 3736, 3911, 4090, 4273 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(n) is the result of taking five consecutive numbers starting at n-2, then adding the products of the first and the last and of the second with the fourth and finally adding the middle term. That is, a(n) = (n^2-4) + (n^2-1) + n. - J. M. Bergot, Mar 06 2018
LINKS
FORMULA
A100035(a(n)) = 4 for n>3;
a(n) = A014105(n) - 5 = A084849(n) - 6 = A100041(n) + 2.
a(n) = 2*a(n-1)-a(n-2)+4; a(0)=-5, a(1)=-2. - Vincenzo Librandi, Dec 26 2010
G.f.: (-5 + 13*x - 4*x^2)/(1 - x)^3. - Arkadiusz Wesolowski, Dec 25 2011
E.g.f.: (2*x^2 + 3*x - 5)*exp(x). - G. C. Greubel, Jul 15 2017
MAPLE
[seq(2*n^2+n-5, n=0..50)]; # Muniru A Asiru, Mar 20 2018
MATHEMATICA
Table[2*n^2 + n - 5, {n, 0, 50}] (* G. C. Greubel, Jul 15 2017 *)
LinearRecurrence[{3, -3, 1}, {-5, -2, 5}, 50] (* Harvey P. Dale, Sep 21 2017 *)
PROG
(Magma) [ 2*n^2+n-5: n in [0..50] ];
(PARI) a(n)=2*n^2+n-5 \\ Charles R Greathouse IV, Sep 24 2015
(GAP) List([0..50], n->2*n^2+n-5); # Muniru A Asiru, Mar 20 2018
CROSSREFS
Sequence in context: A085997 A071546 A154649 * A197271 A248260 A253382
KEYWORD
sign,easy
AUTHOR
Reinhard Zumkeller, Oct 31 2004
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)