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!)
A274197 Row sums of the array A274196, defined by 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. 3
1, 2, 3, 4, 5, 7, 9, 11, 13, 17, 21, 25, 30, 38, 46, 55, 67, 83, 100, 121, 148, 180, 217, 264, 321, 388, 470, 572, 693, 838, 1018, 1237, 1497, 1814, 2205, 2675, 3239, 3930, 4773, 5785, 7010, 8510, 10326, 12514, 15177, 18422, 22340, 27084, 32862, 39872, 483458 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A274198 for the limit of a(n)/a(n-1).
LINKS
EXAMPLE
(g(7,k)) = (1,2,2,2,1,1,1,1), so that a(7) = 11.
MATHEMATICA
z = 150; 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, z}, {k, 0, n}]; w = Map[Total, t];
CROSSREFS
Sequence in context: A000430 A166684 A067126 * A286267 A337334 A008750
KEYWORD
nonn,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.)