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!)
A110552 A triangular array related to A077028 and distributing the values of A007582. 1
1, 1, 2, 1, 5, 4, 1, 10, 17, 8, 1, 19, 51, 49, 16, 1, 36, 134, 196, 129, 32, 1, 69, 330, 650, 645, 321, 64, 1, 134, 783, 1940, 2575, 1926, 769, 128, 1, 263, 1813, 5411, 8995, 8981, 5383, 1793, 256, 1, 520, 4124, 14392, 28742, 35896, 28700, 14344, 4097, 512, 1, 1033, 9252, 36948, 86142, 129150, 129108, 86052, 36873, 9217, 1024 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Let T(r,c) be the array A077028. Fill 2^k numbers in Gaussian templates conforming to the row lengths determined by T(r,c). A110552 results from summing the numbers on each row.
LINKS
P. Barry, A Note on a Family of Generalized Pascal Matrices Defined by Riordan Arrays, Journal of Integer Sequences, 16 (2013), #13.5.4.
FORMULA
Table entries appear to be given by T(n,k) = binomial(n-2,k-1) + 2^(n-1)*binomial(n-2,k-2), n,k >= 1, leading to the e.g.f. (exp((1+x)*u) - 1)*(x*exp((1+x)*u) + x + 2)/(2*(1+x)^2) = u + (1+2*x)*u^2/2! + (1+5*x+4*x^2)*u^3/3! + .... Cf. A111049. - Peter Bala, Jul 27 2012
EXAMPLE
The filled templates begin
1
.1
.2
..1
..2.3
..4
....1
....2.3.5
....4.6.7
....8
therefore the sequence begins
1
1 2
1 5 4
1 10 17 8
...
MATHEMATICA
T[n_, k_] := Binomial[n - 2, k - 1] + 2^(n - 1)*Binomial[n - 2, k - 2]; Table[T[n, k], {n, 1, 20}, {k, 1, n}] // Flatten (* G. C. Greubel, Aug 31 2017 *)
PROG
(PARI) for(n=1, 20, for(k=1, n, print1(binomial(n - 2, k - 1) + 2^(n - 1)*binomial(n - 2, k - 2), ", "))) \\ G. C. Greubel, Aug 31 2017
CROSSREFS
Sequence in context: A238241 A299444 A371300 * A129161 A103415 A054456
KEYWORD
nonn,tabl
AUTHOR
Alford Arnold, Jul 26 2005
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 7 17:41 EDT 2024. Contains 372312 sequences. (Running on oeis4.)