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!)
A131464 a(n) = 4*n^3 - 3*n^2 + 2*n - 1. 2
2, 23, 86, 215, 434, 767, 1238, 1871, 2690, 3719, 4982, 6503, 8306, 10415, 12854, 15647, 18818, 22391, 26390, 30839, 35762, 41183, 47126, 53615, 60674, 68327, 76598, 85511, 95090, 105359, 116342, 128063, 140546, 153815, 167894, 182807, 198578, 215231, 232790 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
G.f.: x*(2 + 15*x + 6*x^2 + x^3)/(1 - x)^4. - Vincenzo Librandi, Feb 12 2013
a(n) = 4*a(n-1)-6*a(n-2)+4*a(n-3)-a(n-4). - Vincenzo Librandi, Feb 12 2013
MATHEMATICA
CoefficientList[Series[(2 + 15 x + 6 x^2 + x^3)/(1 - x)^4, {x, 0, 40}], x] (* Vincenzo Librandi, Feb 12 2013 *)
Table[4n^3-3n^2+2n-1, {n, 40}] (* or *) LinearRecurrence[{4, -6, 4, -1}, {2, 23, 86, 215}, 40] (* Harvey P. Dale, May 05 2018 *)
PROG
(Magma) [4*n^3-3*n^2+2*n-1: n in [1..40]]; /* or */ I:=[2, 23, 86, 215]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Feb 12 2013
CROSSREFS
Sequence in context: A222564 A099134 A069152 * A245331 A270868 A239186
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Jul 26 2007
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 July 16 21:48 EDT 2024. Contains 374358 sequences. (Running on oeis4.)