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!)
A240440 Number of ways to place 3 points on a triangular grid of side n so that they are not vertices of an equilateral triangle of any orientation. 6
0, 0, 15, 105, 420, 1260, 3150, 6930, 13860, 25740, 45045, 75075, 120120, 185640, 278460, 406980, 581400, 813960, 1119195, 1514205, 2018940, 2656500, 3453450, 4440150, 5651100, 7125300, 8906625, 11044215, 13592880, 16613520, 20173560, 24347400, 29216880 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(n) = 15 * A000579(n+3).
a(n) = A001498(n,3), the fourth column of coefficients of Bessel polynomials. - Ran Pan, Dec 03 2015
LINKS
S. Butler, P. Karasik, A note on nested sums, J. Int. Seq. 13 (2010), 10.4.4, p=5 in the last equation on page 3.
FORMULA
a(n) = (n+3)*(n+2)*(n+1)*n*(n-1)*(n-2)/48.
G.f.: 15*x^3 / (1-x)^7. - Colin Barker, Apr 18 2014
a(n) = 7*a(n-1)-21*a(n-2)+35*a(n-3)-35*a(n-4)+21*a(n-5)-7*a(n-6)+a(n-7) for n>7. - Wesley Ivan Hurt, Dec 03 2015
MAPLE
A240440:=n->(n+3)*(n+2)*(n+1)*n*(n-1)*(n-2)/48; seq(A240440(n), n=1..50); # Wesley Ivan Hurt, Apr 08 2014
MATHEMATICA
Table[(n+3)(n+2)(n+1)n(n-1)(n-2)/48, {n, 50}] (* Wesley Ivan Hurt, Apr 08 2014 *)
CoefficientList[Series[15 x^2/(1 - x)^7, {x, 0, 40}], x] (* Vincenzo Librandi, Apr 19 2014 *)
PROG
(PARI) Vec(15*x^3/(1-x)^7 + O(x^100)) \\ Colin Barker, Apr 18 2014
(Magma) [(n+3)*(n+2)*(n+1)*n*(n-1)*(n-2)/48 : n in [1..50]]; // Wesley Ivan Hurt, Dec 03 2015
(PARI) vector(100, n, (n^2-1)*(n^2-4)*(n+3)*n/48) \\ Derek Orr, Dec 24 2015
CROSSREFS
If one of the initial zeros is omitted, this is a row of the array in A129533.
Sequence in context: A174385 A185129 A090454 * A256287 A047640 A296912
KEYWORD
nonn,easy
AUTHOR
Heinrich Ludwig, Apr 08 2014
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 16 01:01 EDT 2024. Contains 371696 sequences. (Running on oeis4.)