This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A123187 #17 Jul 24 2015 18:57:40 %S A123187 1,1,13,1,26,169,1,39,507,2197,1,52,1014,8788,28561,1,65,1690,21970, %T A123187 142805,371293,1,78,2535,43940,428415,2227758,4826809,1,91,3549,76895, %U A123187 999635,7797153,33787663,62748517,1,104,4732,123032,1999270,20792408 %N A123187 Triangle of coefficients in expansion of (1+13x)^n. %C A123187 T(n,k) equals the number of n-length words on {0,1,...,13} having n-k zeros. - _Milan Janjic_, Jul 24 2015 %F A123187 p(k, x) = (13*x + 1)*p(k - 1, x). %F A123187 T(n,k) = 13^k*C(n,k) = Sum_{i=n-k..n} C(i,n-k)*C(n,i)*12^(n-i). Row sums are 14^n = A001023. G.f.: 1 / [1 - x(1+13y)]. - _Mircea Merca_, Apr 28 2012 %e A123187 1 %e A123187 1, 13 %e A123187 1, 26, 169 %e A123187 1, 39, 507, 2197 %e A123187 1, 52, 1014, 8788, 28561 %e A123187 1, 65, 1690, 21970, 142805, 371293 %p A123187 T:= n-> (p-> seq(coeff(p, x, k), k=0..n))((1+13*x)^n): %p A123187 seq(T(n), n=0..10); # _Alois P. Heinz_, Jul 24 2015 %t A123187 p[0, x] = 1; p[1, x] = 13*x + 1; p[k_, x_] := p[k, x] = (13*x + 1)*p[k - 1, x]; w = Table[CoefficientList[p[n, x], x], {n, 0, 10}]; Flatten[w] %Y A123187 Cf. A013609, A013610, A013611, A013621, A038220, A038222. %K A123187 nonn,tabl %O A123187 1,3 %A A123187 _Roger L. Bagula_ and _Gary W. Adamson_, Oct 03 2006