login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144380 Fourth diagonal of A142458: A(n,k)= (3*n - 3*k + 1)A(n - 1, k - 1) + (3*k - 2)A(n - 1, k). 0
1, 166, 5482, 109640, 1709675, 23077694, 284433852 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

FORMULA

A(n,k)= (3*n - 3*k + 1)A(n - 1, k - 1) + (3*k - 2)A(n - 1, k); a(n)=diagonal(a(n,k),4).

MATHEMATICA

Clear[A, a, b, n, m, k]; A[n_, 1] := 1; A[n_, n_] := 1; A[n_, k_] := (3*n - 3*k + 1)A[n - 1, k - 1] + (3*k - 2)A[n - 1, k]; a = Table[A[n, k], {n, 20}, {k, n}]; b = Table[a[[n + m - 1]][[n]], {m, 1, 10}, {n, 1, 10}]; Table[b[[4]][[n]], {n, 1, 10}]

CROSSREFS

Cf. A142458.

Sequence in context: A204971 A204964 A193984 * A204963 A011815 A188413

Adjacent sequences:  A144377 A144378 A144379 * A144381 A144382 A144383

KEYWORD

nonn,uned

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Oct 01 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 21:13 EST 2012. Contains 206085 sequences.