login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A211246
Irregular triangle read by rows: numbers a_m(i) related to Bernoulli and Euler polynomials.
1
4, 3, 6, 8, 5, 5, 8, 19, 12, 7, 14, 7, 10, 34, 44, 16, 9, 27, 30, 9, 12, 53, 104, 85, 20, 11, 44, 77, 55, 11, 14, 76, 200, 259, 146, 24, 13, 65, 156, 182, 91, 13, 16, 103, 340, 606, 560, 231, 28, 15, 90, 275, 450, 378, 140, 15, 18, 134, 532, 1210, 1572, 1092, 344, 32
OFFSET
2,1
COMMENTS
See the Sun (2008) reference for the (complicated) precise definition.
LINKS
Zhi-Wei Sun, On sums of binomial coefficients and their applications, arXiv:math/0404385 [math.NT], 2004-2008.
Zhi-Wei Sun, On sums of binomial coefficients and their applications, Discrete Math. 308 (2008), no. 18, 4231--4245. MR2427754(2010d:05002).
EXAMPLE
Triangle begins:
4
3
6 8
5 5
8 19 12
7 14 7
10 34 44 16
9 27 30 9
12 53 104 85 20
11 44 77 55 11
14 76 200 259 146 24
...
MATHEMATICA
c[m_, i_] := Binomial[m-1-i, i] + 4 Binomial[m-i, i-1];
d[m_, i_] := Binomial[m-i, i] m/(m -i);
a[m_, i_] := If[EvenQ[m], c[m, i], d[m, i]];
Table[a[m, i], {m, 1, 16}, {i, 1, m/2}] // Flatten (* Jean-François Alcover, Oct 08 2018, from PARI *)
PROG
(PARI)
c(m, i) = binomial(m-1-i, i) + 4*binomial(m-i, i-1);
d(m, i) = binomial(m-i, i)*m / (m-i);
a(m, i) = if ( m%2 == 0, c(m, i), d(m, i) );
for (m=1, 16, for (i=1, floor(m/2), print1( a(m, i), ", "))) \\ Hugo Pfoertner, Nov 01 2017
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
N. J. A. Sloane, Apr 05 2012
EXTENSIONS
More terms from Hugo Pfoertner, Nov 01 2017
STATUS
approved