cp's OEIS Frontend

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.

A255044 Array A read by upward antidiagonals: A(n,k) = ((2*n+1)*9^k-1)/2, n,k >= 0.

This page as a plain text file.
%I A255044 #7 Feb 14 2015 23:59:07
%S A255044 0,1,4,2,13,40,3,22,121,364,4,31,202,1093,3280,5,40,283,1822,9841,
%T A255044 29524,6,49,364,2551,16402,88573,265720,7,58,445,3280,22963,147622,
%U A255044 797161,2391484,8,67,526,4009,29524,206671,1328602,7174453,21523360
%N A255044 Array A read by upward antidiagonals: A(n,k) = ((2*n+1)*9^k-1)/2, n,k >= 0.
%F A255044 G.f. for row n: (n+(4-n)*x)/((1-x)(1-9*x)).
%F A255044 Recurrence for row n: A(n,k) = 10*A(n,k-1)-9*A(n,k-2), k >= 2, A(n,0) = n, A(n,1) = 9*n+4.
%e A255044 Array begins:
%e A255044 .   0   4   40   364   3280   29524   265720   2391484   21523360
%e A255044 .   1  13  121  1093   9841   88573   797161   7174453   64570081
%e A255044 .   2  22  202  1822  16402  147622  1328602  11957422  107616802
%e A255044 .   3  31  283  2551  22963  206671  1860043  16740391  150663523
%e A255044 .   4  40  364  3280  29524  265720  2391484  21523360  193710244
%e A255044 .   5  49  445  4009  36085  324769  2922925  26306329  236756965
%e A255044 .   6  58  526  4738  42646  383818  3454366  31089298  279803686
%e A255044 .   7  67  607  5467  49207  442867  3985807  35872267  322850407
%e A255044 .   8  76  688  6196  55768  501916  4517248  40655236  365897128
%t A255044 (* Array: *)
%t A255044 Grid[Table[((2*n + 1)*9^k - 1)/2, {n, 0, 8}, {k, 0, 8}]]
%t A255044 (* Array antidiagonals flattened: *)
%t A255044 Flatten[Table[((2*(n - k) + 1)*9^k - 1)/2, {n, 0, 8}, {k, 0, n}]]
%Y A255044 Cf. A191681, A096053, A255043, A198964, A198969 (rows 0-3 and 5).
%Y A255044 Cf. A138894 (1/2 of row 2).
%K A255044 nonn,tabl
%O A255044 0,3
%A A255044 _L. Edson Jeffery_, Feb 13 2015