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!)
A037235 a(n) = n*(2*n^2 - 3*n + 4)/3. 5
0, 1, 4, 13, 32, 65, 116, 189, 288, 417, 580, 781, 1024, 1313, 1652, 2045, 2496, 3009, 3588, 4237, 4960, 5761, 6644, 7613, 8672, 9825, 11076, 12429, 13888, 15457, 17140, 18941, 20864, 22913, 25092, 27405, 29856, 32449, 35188, 38077, 41120, 44321, 47684, 51213 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Row sums of triangle A134249. Also, binomial transform of (1, 3, 6, 4, 0, 0, 0, ...). - Gary W. Adamson, Oct 15 2007
Binomial transform of a(n) starts: 0, 1, 6, 28, 112, 400, 1312, 4032, ... . - Wesley Ivan Hurt, Oct 21 2014
Number of equivalence classes of n-tuples from the set {1,0,-1} where at the number of nonzero elements is 1,2, or 3 and two n-tuples are equivalent if they are negatives of each other. - Michael Somos, Oct 19 2022
LINKS
T. A. Gulliver, Sequences from Arrays of Integers, Int. Math. Journal, Vol. 1, No. 4, pp. 323-332, 2002.
FORMULA
G.f.: x*(1+3*x^2)/(1-x)^4.
a(n) = Sum_{k=0..n-1} (2*k^2 + 1). - Mike Warburton, Sep 08 2007
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) with n>3, a(0)=0, a(1)=1, a(2)=4, a(3)=13. - Yosu Yurramendi, Sep 03 2013
a(n+1) = a(n) + A058331(n). - Michael Somos, Oct 19 2022
MAPLE
A037235:=n->n*(2*n^2-3*n+4)/3: seq(A037235(n), n=0..50); # Wesley Ivan Hurt, Oct 21 2014
MATHEMATICA
Table[n (2 n^2 - 3 n + 4)/3, {n, 0, 50}] (* Wesley Ivan Hurt, Oct 21 2014 *)
PROG
(PARI) A037235(n) = n*(2*n^2-3*n+4)/3 \\ Michael B. Porter, Dec 07 2009
(Magma) [n*(2*n^2-3*n+4)/3: n in [0..40]]; // Vincenzo Librandi, Jun 15 2011
(R)
a <- c(0, 1, 4, 13)
for(n in (length(a)+1):30) a[n] <- 4*a[n-1] -6*a[n-2] +4*a[n-3] -a[n-4]
a
# Yosu Yurramendi, Sep 03 2013
CROSSREFS
Sequence in context: A184632 A212747 A011936 * A363256 A051912 A060099
KEYWORD
nonn,easy
AUTHOR
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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)