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”).

Sequence A154693 adjusted to leading one:t(n,m)=A154693(n,m)-A154693(n,0)+1
0

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

%S 1,1,1,1,12,1,1,58,58,1,1,244,512,244,1,1,994,3592,3592,994,1,1,4016,

%T 23756,38592,23756,4016,1,1,16174,154420,374728,374728,154420,16174,1,

%U 1,65004,993088,3529104,4997824,3529104,993088,65004,1,1,260842,6314368

%N Sequence A154693 adjusted to leading one:t(n,m)=A154693(n,m)-A154693(n,0)+1

%C Row sums are:

%C 1, 2, 14, 118, 1002, 9174, 94138, 1090646, 14172218, 204490006, 3245253882,...

%F t(n,m)=A154693(n,m)-A154693(n,0)+1

%e {1},

%e {1, 1},

%e {1, 12, 1},

%e {1, 58, 58, 1},

%e {1, 244, 512, 244, 1},

%e {1, 994, 3592, 3592, 994, 1},

%e {1, 4016, 23756, 38592, 23756, 4016, 1},

%e {1, 16174, 154420, 374728, 374728, 154420, 16174, 1},

%e {1, 65004, 993088, 3529104, 4997824, 3529104, 993088, 65004, 1},

%e {1, 260842, 6314368, 32773312, 62896480, 62896480, 32773312, 6314368, 260842, 1},

%e {1, 1045480, 39684596, 299673344, 779048096, 1006350848, 779048096, 299673344, 39684596, 1045480, 1}

%t Clear[t, p, q, n, m];

%t p = 2; q = 1;

%t t[n_, m_] = (p^(n - m)*q^m + p^m*q^( n - m))*Sum[(-1)^j*Binomial[n + 2, j]*(m - j + 1)^(n + 1), {j, 0, m + 1}];

%t Table[Table[t[n, m] - t[n, 0] + 1, {m, 0, n}], {n, 0, 10}];

%t Flatten[%]

%Y A154690, A154692, A154693

%K nonn,tabl,uned

%O 0,5

%A _Roger L. Bagula_, Mar 26 2010