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!)
A318255 Associated Omega numbers of order 3, triangle T(n,k) read by rows for n >= 0 and 0 <= k <= n. 2
1, 1, 1, 1, 10, -9, 1, 28, -504, 477, 1, 55, -4158, 78705, -74601, 1, 91, -18018, 1432431, -27154764, 25740261, 1, 136, -55692, 11595870, -923261976, 17503377480, -16591655817, 1, 190, -139536, 60087690, -12529983960, 997692516360, -18914487631380, 17929265150637 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
See the comments in A318254.
LINKS
FORMULA
T(m, n, k) = binomial(m*n-1, m*(n-k))*A318253(m, k) for k>0 and 1 for k=0. We consider here the case m=3.
EXAMPLE
Triangle starts:
[0] 1
[1] 1, 1
[2] 1, 10, -9
[3] 1, 28, -504, 477
[4] 1, 55, -4158, 78705, -74601
[5] 1, 91, -18018, 1432431, -27154764, 25740261
[6] 1, 136, -55692, 11595870, -923261976, 17503377480, -16591655817
MAPLE
# The function TNum is defined in A318253.
T := (m, n, k) -> `if`(k=0, 1, binomial(m*n-1, m*(n-k))*TNum(m, k)):
for n from 0 to 6 do seq(T(3, n, k), k=0..n) od;
PROG
(Sage) # uses[AssociatedOmegaNumberTriangle from A318254]
A318255Triangle = lambda dim: AssociatedOmegaNumberTriangle(3, dim)
print(A318255Triangle(8))
CROSSREFS
T(n, 0) = A060544, T(n, n) = A293951(n+1) (up to signs), row sums are A040000.
Cf. A318146, A318253, A318254 (m=2).
Sequence in context: A318421 A280902 A118768 * A008956 A291560 A259567
KEYWORD
sign,tabl
AUTHOR
Peter Luschny, Aug 26 2018
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 18 03:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)