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!)
A096035 Triangle read by rows: T(n,k) = (n+1,k)-th element of (M^4-M)/3, where M is the infinite lower Pascal's triangle matrix, 1<=k<=n. 2
1, 5, 2, 21, 15, 3, 85, 84, 30, 4, 341, 425, 210, 50, 5, 1365, 2046, 1275, 420, 75, 6, 5461, 9555, 7161, 2975, 735, 105, 7, 21845, 43688, 38220, 19096, 5950, 1176, 140, 8, 87381, 196605, 196596, 114660, 42966, 10710, 1764, 180, 9, 349525, 873810, 983025 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Triangle begins:
1;
5, 2;
21, 15, 3;
85, 84, 30, 4;
341, 425, 210, 50, 5;
1365, 2046, 1275, 420, 75, 6;
MAPLE
P:= proc(n) option remember; local M; M:= Matrix(n, (i, j)-> binomial(i-1, j-1)); (M^4-M)/3 end: T:= (n, k)-> P(n+1)[n+1, k]: seq(seq(T(n, k), k=1..n), n=1..11); # Alois P. Heinz, Oct 07 2009
MATHEMATICA
rows=11; M[n_] := M[n] = Array[Binomial, {n, n}, {0, 0}]; P[n_] := (MatrixPower[ M[n], 4] - M[n])/3; Table[P[rows+1][[n+1, 1 ;; n]], {n, 1, rows}] // Flatten (* Jean-François Alcover, Mar 11 2015 *)
CROSSREFS
Cf. A007318. First column gives A002450. Row sums give A016127.
Sequence in context: A189746 A191667 A130329 * A074769 A036165 A246798
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jun 17 2004
EXTENSIONS
Edited and more terms from Alois P. Heinz, Oct 07 2009
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 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)