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!)
A274196 Triangular array read by rows: g(n,k) = 1 for n >= 0; g(n,k) = 0 if k > n; g(n,k) = g(n-1,k-1) + g(n-1,4k) for n > 0, k > 1. 6
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1, 3, 4, 3, 2, 2, 2, 1, 1, 1, 1, 1, 3, 4, 4, 3, 2, 2, 2, 1, 1, 1, 1, 1, 4, 4, 4, 4, 3, 2, 2 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,17
LINKS
EXAMPLE
First 10 rows:
1
1 1
1 1 1
1 1 1 1
1 1 1 1 1
1 2 1 1 1 1
1 2 2 1 1 1 1
1 2 2 2 1 1 1 1
1 2 2 2 2 1 1 1 1
1 3 3 2 2 2 1 1 1 1
MATHEMATICA
g[n_, 0] = g[n, 0] = 1;
g[n_, k_] := g[n, k] = If[k > n, 0, g[n - 1, k - 1] + g[n - 1, 4 k]];
t = Table[g[n, k], {n, 0, 14}, {k, 0, n}]
TableForm[t] (* A274196 array *)
u = Flatten[t] (* A274196 sequence *)
CROSSREFS
Cf. A274197 (row sums), A274201 (limiting reverse row), A274190.
Sequence in context: A037829 A270992 A117546 * A096811 A082478 A279060
KEYWORD
nonn,tabl,easy
AUTHOR
Clark Kimberling, Jun 16 2016
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)