The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A250484 Square array: number of [0-r]-covering hierarchies with thickness <= e. 1
1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 3, 1, 0, 1, 1, 3, 7, 1, 0, 1, 1, 3, 11, 15, 1, 0, 1, 1, 3, 11, 37, 31, 1, 0, 1, 1, 3, 11, 45, 117, 63, 1, 0, 1, 1, 3, 11, 45, 181, 357, 127, 1, 0, 1, 1, 3, 11, 45, 197, 703, 1065, 255, 1, 0, 1, 1, 3, 11, 45, 197, 871, 2659, 3129, 511, 1, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,13
LINKS
G. Kreweras, Sur les hiérarchies de segments, Cahiers du Bureau Universitaire de Recherche Opérationnelle, Institut de Statistique, Université de Paris, #20 (1973), p. 27.
G. Kreweras, Sur les hiérarchies de segments, Cahiers du Bureau Universitaire de Recherche Opérationnelle, Institut de Statistique, Université de Paris, #20 (1973). (Annotated scanned copy)
FORMULA
G.f. for column e: s(e) = 1 + t*s(e-1)^2/(1 - t*s(e-1)), with s(0) = 1.
EXAMPLE
Table starts:
1 1 1 1 1 1 1 1 ...
0 1 1 1 1 1 1 1 ...
0 1 3 3 3 3 3 3 ...
0 1 7 11 11 11 11 11 ...
0 1 15 37 45 45 45 45 ...
0 1 31 117 181 197 197 197 ...
0 1 63 357 703 871 903 903 ...
0 1 127 1065 2659 3799 4215 4279 ...
...
PROG
(PARI) s(e) = if (e==0, 1, 1 + t*s(e-1)^2/(1 - t*s(e-1)));
tabl(nn) = {v = vector(nn); v[1] = 1; for (n=2, nn, v[n] = 1 + t*v[n-1]^2/(1 - t*v[n-1]); ); pv = vector(nn, n, v[n]+O(t^(nn+1))); m = matrix(nn, nn, n, k, polcoeff(pv[n], k-1, t)); mattranspose(m); }
CROSSREFS
Cf. A001003 (diagonal).
Sequence in context: A293960 A062719 A305161 * A294250 A117417 A231345
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Nov 24 2014
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 May 13 16:16 EDT 2024. Contains 372522 sequences. (Running on oeis4.)