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!)
A139525 A trinomial made into a single variable polynomial coefficient triangle form three Pascallike factorial binomials in {x,y},{y,z} and {x,z}: binomials as: g(n,m)= If[m < "is less than" Floor[n/2], m!, (n - m)! ]; f(x,y,n)=Sum[g(n, i)*x^i*y^(n - i), {i, 0, n}]; p(x,y,z,n)=f(x,y,n)+f(y,z,n)+f(x,z,n). 0
3, 4, 2, 5, 2, 2, 7, 4, 2, 2, 8, 2, 4, 2, 2, 14, 2, 12, 4, 2, 2, 16, 2, 4, 12, 4, 2, 2, 40, 2, 4, 48, 12, 4, 2, 2, 46, 2, 4, 12, 48, 12, 4, 2, 2, 166, 2, 4, 12, 240, 48, 12, 4, 2, 2, 190, 2, 4, 12, 48, 240, 48, 12, 4, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row sums are:
{3, 6, 9, 15, 18, 36, 42, 114, 132, 492, 564}
REFERENCES
Advanced Number Theory, Harvey Cohn, Dover Books, 1963, Pages 88-89
LINKS
FORMULA
g(n,m)= If[m < "is less than" Floor[n/2], m!, (n - m)! ]; f(x,y,n)=Sum[Binomial[n, i]*x^i*y^(n - i), {i, 0, n}]; p(x,y,z,n)=f(x,y,n)+f(y,z,n)+f(x,z,n); Out_n,m=Coefficients(p(x,1,1,n)).
EXAMPLE
{3},
{4, 2},
{5, 2, 2},
{7, 4, 2, 2},
{8, 2, 4, 2, 2},
{14, 2, 12, 4, 2, 2},
{16, 2, 4, 12, 4, 2, 2},
{40, 2, 4, 48, 12, 4, 2, 2},
{46, 2, 4, 12, 48, 12, 4, 2, 2},
{166, 2, 4, 12, 240, 48, 12, 4, 2, 2},
{190, 2, 4, 12, 48, 240, 48, 12, 4, 2, 2}
MATHEMATICA
Clear[f, x, n] g[n_, m_] = If[m < Floor[n/2], m!, (n - m)! ]; f[x_, y_, n_] = Sum[g[n, i]*x^i*y^(n - i), {i, 0, n}]; Table[ExpandAll[f[x, y, n] + f[y, z, n] + f[x, z, n]], {n, 0, 10}] a = Table[CoefficientList[ExpandAll[f[x, y, n] + f[y, z, n] + f[x, z, n]] /. y -> 1 /. z -> 1, x], {n, 0, 10}]; Flatten[a]
CROSSREFS
Cf. A007283.
Sequence in context: A078069 A090131 A152833 * A246832 A133570 A117041
KEYWORD
nonn,uned
AUTHOR
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 July 16 19:40 EDT 2024. Contains 374358 sequences. (Running on oeis4.)