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!)
A172353 Triangle t(n,k) of Padovan factorial ratios c(n)/(c(k)*c(n-k)) where c(n) = A126772(n). 4
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 2, 4, 4, 2, 1, 1, 3, 6, 12, 6, 3, 1, 1, 4, 12, 24, 24, 12, 4, 1, 1, 5, 20, 60, 60, 60, 20, 5, 1, 1, 7, 35, 140, 210, 210, 140, 35, 7, 1, 1, 9, 63, 315, 630, 945, 630, 315, 63, 9, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,12
COMMENTS
Start from the Padovan sequence A134816 and its partial products A126772, extended by A126772(0)=1. Then t(n,k) = c(n)/(c(k)*c(n-k)).
Row sums are 1, 2, 3, 4, 8, 14, 32, 82, 232, 786, 2981,..
LINKS
EXAMPLE
1;
1, 1;
1, 1, 1;
1, 1, 1, 1;
1, 2, 2, 2, 1;
1, 2, 4, 4, 2, 1;
1, 3, 6, 12, 6, 3, 1;
1, 4, 12, 24, 24, 12, 4, 1;
1, 5, 20, 60, 60, 60, 20, 5, 1;
1, 7, 35, 140, 210, 210, 140, 35, 7, 1;
1, 9, 63, 315, 630, 945, 630, 315, 63, 9, 1;
MATHEMATICA
Clear[f, c, a, t];
f[0, a_] := 0; f[1, a_] := 1; f[2, a_] := 1;
f[n_, a_] := f[n, a] = a*f[n - 2, a] + f[n - 3, a];
c[n_, a_] := If[n == 0, 1, Product[f[i, a], {i, 1, n}]];
t[n_, m_, a_] := c[n, a]/(c[m, a]*c[n - m, a]);
Table[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}], {a, 1, 10}];
Table[Flatten[Table[Table[t[n, m, a], {m, 0, n}], {n, 0, 10}]], {a, 1, 10}]
CROSSREFS
Sequence in context: A078826 A051950 A341062 * A282011 A245514 A104754
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Feb 01 2010
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 23 06:45 EDT 2024. Contains 371906 sequences. (Running on oeis4.)