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!)
A143978 a(n) = floor(2*n*(n+1)/3). 9
1, 4, 8, 13, 20, 28, 37, 48, 60, 73, 88, 104, 121, 140, 160, 181, 204, 228, 253, 280, 308, 337, 368, 400, 433, 468, 504, 541, 580, 620, 661, 704, 748, 793, 840, 888, 937, 988, 1040, 1093, 1148, 1204, 1261, 1320, 1380, 1441, 1504, 1568, 1633, 1700, 1768, 1837 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Second diagonal of array A143979, which counts certain unit squares in a lattice. First diagonal: A030511.
Convolution of A042965 with A000012, convolution of A131534 with A000027, and convolution of A106510 with A000217. - L. Edson Jeffery, Jan 24 2015
LINKS
FORMULA
From R. J. Mathar, Oct 05 2009: (Start)
G.f.: x*(1 + x)^2/((1 + x + x^2)*(1-x)^3).
a(n) = 2*a(n-1) - a(n-2) + a(n-3) - 2*a(n-4) + a(n-5). (End)
a(n) = Sum_{k=1..(n+1)} A042965(k). - Klaus Purath, May 23 2020
From G. C. Greubel, May 27 2020: (Start)
a(n) = (ChebyshevU(n, -1/2) - ChebyshevU(n-1, -1/2) + (6*n^2 + 6*n -1))/9.
a(n) = (JacobiSymbol(n+1, 3) - JacobiSymbol(n, 3) + (6*n^2 + 6*n -1))/9.
a(n) = (A102283(n+1) - A102283(n) + A103115(n+1))/9
a(n) = (A131713(n) + A103115(n+1))/9. (End)
Sum_{n>=1} 1/a(n) = 3/2 + (tan(Pi/(2*sqrt(3)))-1)*Pi/(2*sqrt(3)). - Amiram Eldar, Sep 27 2022
E.g.f.: exp(-x/2)*(exp(3*x/2)*(6*x^2 + 12*x - 1) + cos(sqrt(3)*x/2) - sqrt(3)*sin(sqrt(3)*x/2))/9. - Stefano Spezia, Apr 05 2023
MAPLE
A143978:= n-> (6*n*(n+1) -1 + `mod`(n+2, 3) - `mod`(n+1, 3))/9;
seq(A143978(n), n=1..60); # G. C. Greubel, May 27 2020
MATHEMATICA
Table[(6*n^2 +6*n -1 + Mod[n+2, 3] - Mod[n+1, 3])/9, {n, 60}] (* G. C. Greubel, May 27 2020 *)
CROSSREFS
Cf. A000217, A030511, A042965 (first differences), A106510, A131534, A143979.
Sequence in context: A265382 A056738 A170907 * A362016 A071994 A023661
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Sep 06 2008
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 March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)