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!)
A172356 Triangle T(n, k) = round( c(n)/(c(k)*c(n-k)) ), where c(n) = Product_{j=1..n} A078012(j+3), read by rows. 1

%I #8 May 10 2021 03:52:55

%S 1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,3,6,6,3,1,1,4,12,24,12,4,1,1,6,24,72,

%T 72,24,6,1,1,9,54,216,324,216,54,9,1,1,13,117,702,1404,1404,702,117,

%U 13,1,1,19,247,2223,6669,8892,6669,2223,247,19,1

%N Triangle T(n, k) = round( c(n)/(c(k)*c(n-k)) ), where c(n) = Product_{j=1..n} A078012(j+3), read by rows.

%H G. C. Greubel, <a href="/A172356/b172356.txt">Rows n = 0..50 of the triangle, flattened</a>

%F T(n, k, q) = round( c(n,q)/(c(k,q)*c(n-k,q)) ), where c(n,q) = Product_{j=1..n} f(j,q), f(n,q) = q*f(n-1,q) + f(n-3,q), f(0,q) = 0, f(1,q) = f(2,q) = 1, and q = 1.

%F T(n, k) = round( c(n)/(c(k)*c(n-k)) ), where c(n) = Product_{j=1..n} A078012(j+3). - _G. C. Greubel_, May 09 2021

%e Triangle begins as:

%e 1;

%e 1, 1;

%e 1, 1, 1;

%e 1, 1, 1, 1;

%e 1, 2, 2, 2, 1;

%e 1, 3, 6, 6, 3, 1;

%e 1, 4, 12, 24, 12, 4, 1;

%e 1, 6, 24, 72, 72, 24, 6, 1;

%e 1, 9, 54, 216, 324, 216, 54, 9, 1;

%e 1, 13, 117, 702, 1404, 1404, 702, 117, 13, 1;

%e 1, 19, 247, 2223, 6669, 8892, 6669, 2223, 247, 19, 1;

%t f[n_, q_]:= f[n, q]= If[n<3, Fibonacci[n], q*f[n-1, q] + f[n-3, q]];

%t c[n_, q_]:= Product[f[j, q], {j,n}];

%t T[n_, k_, q_]:= Round[c[n, q]/(c[k, q]*c[n-k, q])];

%t Table[T[n, k, 1], {n,0,12}, {k,0,n}]//Flatten (* modified by _G. C. Greubel_, May 09 2021 *)

%o (Sage)

%o @CachedFunction

%o def f(n,q): return fibonacci(n) if (n<3) else q*f(n-1, q) + f(n-3, q)

%o def c(n,q): return product( f(j,q) for j in (1..n) )

%o def T(n,k,q): return round(c(n, q)/(c(k, q)*c(n-k, q)))

%o flatten([[T(n,k,1) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, May 09 2021

%Y cf. A078012.

%K nonn,tabl,less

%O 0,12

%A _Roger L. Bagula_, Feb 01 2010

%E Definition corrected to give integral terms by _G. C. Greubel_, May 09 2021

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 00:07 EDT 2024. Contains 372497 sequences. (Running on oeis4.)