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!)
A294735 Triangle read by rows: T(n,k) (3 <= k < n) gives number of solutions to certain 1-loop scattering equations refined by MHV degree. 0
2, 6, 6, 14, 44, 14, 30, 210, 210, 30, 62, 832, 1812, 832, 62, 126, 2982, 12012, 12012, 2982, 126, 254, 10068, 68322, 124952, 68322, 10068, 254, 510, 32730, 352350, 1065930, 1065930, 352350, 32730, 510, 1022, 103784, 1700456, 7972568, 13103540, 7972568, 1700456, 103784, 1022 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
4,1
COMMENTS
See Appendix E of Farrow and Lipstein.
LINKS
Joseph A. Farrow and Arthur E. Lipstein, From 4d Ambitwistor Strings to On Shell Diagrams and Back, arXiv:1705.07087 [hep-th], 2017.
FORMULA
T(n,k) = euler(n-1,k-1) - euler(n-2,k-1) - euler(n-2,k-2), where euler = A008292.
EXAMPLE
Triangle begins
2
6, 6
14, 44, 14
30, 210, 210, 30
62, 832, 1812, 832, 62
126, 2982, 12012, 12012, 2982, 126
254, 10068, 68322, 124952, 68322, 10068, 254
510, 32730, 352350, 1065930, 1065930, 352350, 32730, 510
1022, 103784, 1700456, 7972568, 13103540, 7972568, 1700456, 103784, 1022
MATHEMATICA
e[n_, k_] := Sum[(-1)^j (k - j)^n Binomial[n + 1, j], {j, 0, k}];
T[n_, k_] := e[n - 1, k - 1] - e[n - 2, k - 1] - e[n - 2, k - 2];
Table[T[n, k], {n, 4, 12}, {k, 3, n - 1}] // Flatten (* Jean-François Alcover, Feb 14 2019 *)
CROSSREFS
Sequence in context: A206490 A343315 A321302 * A367072 A251548 A316785
KEYWORD
nonn,tabl
AUTHOR
Eric M. Schmidt, Nov 07 2017
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 August 23 03:25 EDT 2024. Contains 375375 sequences. (Running on oeis4.)