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!)
A174187 A four product triangle sequence based on :a=2;f(n,a)=f(n - 1, a) + a*f(n - 2, a) 0

%I #2 Mar 30 2012 17:34:39

%S 1,1,1,1,15,1,1,165,165,1,1,3465,38115,3465,1,1,49665,11472615,

%T 11472615,49665,1,1,844305,2795493855,58705370955,2795493855,844305,1,

%U 1,13125105,738772785135,222370608325635,222370608325635,738772785135,13125105,1,1

%N A four product triangle sequence based on :a=2;f(n,a)=f(n - 1, a) + a*f(n - 2, a)

%C Row sums are:

%C {1, 2, 17, 332, 45047, 23044562, 64298047277, 446218788471752,

%C 15586551283295860067, 1872235155190574164923902,

%C 1140569746063885365760212575897,...}

%F a=2;f(n,a)=f(n - 1, a) + a*f(n - 2, a);

%F c(n,a)=If[n == 0 || n == 1, 1, Product[f(i - 1, a)*f(i, a)*f(i + 1, a)*f(i + 2, a), {i, 2, n}]];

%F t(n,m,a)=c(n,a)/(c(m,a)*c(n-m,a))

%e {1},

%e {1, 1},

%e {1, 15, 1},

%e {1, 165, 165, 1},

%e {1, 3465, 38115, 3465, 1},

%e {1, 49665, 11472615, 11472615, 49665, 1},

%e {1, 844305, 2795493855, 58705370955, 2795493855, 844305, 1},

%e {1, 13125105, 738772785135, 222370608325635, 222370608325635, 738772785135, 13125105, 1},

%e {1, 213126705, 186487358761935, 954255814784821395, 13677666678582439995, 954255814784821395, 186487358761935, 213126705, 1},

%e {1, 3385245105, 48099075656401935, 3826093444807389812595, 932291436051400651002315, 932291436051400651002315, 3826093444807389812595, 48099075656401935, 3385245105, 1},

%e {1, 54363053745, 12268817438874211215, 15847349302992724519557555, 60028318491617986596036785835, 1020481414357505772132625359195, 60028318491617986596036785835, 15847349302992724519557555, 12268817438874211215, 54363053745, 1}

%t f[0, a_] := 0; f[1, a_] := 1;

%t f[n_, a_] := f[n, a] = f[n - 1, a] + a*f[n - 2, a];

%t c[n_, a_] := If[n == 0 || n == 1, 1, Product[f[i - 1, a]*f[i, a]*f[i + 1, a]*f[i + 2, a], {i, 2, n}]];Q w[n_, m_, q_] := c[n, q]/(c[m, q]*c[n - m, q]);

%t Table[Flatten[Table[Table[w[n, m, q], {m, 0, n}], {n, 0, 10}]], {q, 1, 12}]

%K nonn,tabl,uned

%O 0,5

%A _Roger L. Bagula_, Mar 11 2010

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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)