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 A156353 #16 Sep 19 2013 10:02:18 %S A156353 2,3,3,4,8,4,5,17,17,5,6,32,54,32,6,7,57,145,145,57,7,8,100,368,512, %T A156353 368,100,8,9,177,945,1649,1649,945,177,9,10,320,2530,5392,6250,5392, %U A156353 2530,320,10,11,593,7073,18785,23401,23401,18785,7073,593,11,12,1124,20412 %N A156353 A symmetrical powers triangle sequence: t(n,m) = (m^(n - m) + (n - m)^m). %C A156353 Equivalently, table by antidiagonals of n^m + m^n for n,m > 0. %C A156353 Row sums are: %C A156353 {2, 6, 16, 44, 130, 418, 1464, 5560, 22754, 99726, 465536,...}. %H A156353 Boris Putievskiy, <a href="/A156353/b156353.txt">Rows n = 1..77 of triangle, flattened</a> %F A156353 t(n,m) = (m^(n - m) + (n - m)^m). %F A156353 a(n) = A004736(n)^A002260(n) + A002260(n)^A004736(n) or %F A156353 ((t*t+3*t+4)/2-n)^(n-(t*(t+1)/2))+ (n-(t*(t+1)/2))^((t*t+3*t+4)/2-n), where t=floor((-1+sqrt(8*n-7))/2). - _Boris Putievskiy_, Dec 14 2012 %e A156353 {2}, %e A156353 {3, 3}, %e A156353 {4, 8, 4}, %e A156353 {5, 17, 17, 5}, %e A156353 {6, 32, 54, 32, 6}, %e A156353 {7, 57, 145, 145, 57, 7}, %e A156353 {8, 100, 368, 512, 368, 100, 8}, %e A156353 {9, 177, 945, 1649, 1649, 945, 177, 9}, %e A156353 {10, 320, 2530, 5392, 6250, 5392, 2530, 320, 10}, %e A156353 {11, 593, 7073, 18785, 23401, 23401, 18785, 7073, 593, 11}, %e A156353 {12, 1124, 20412, 69632, 94932, 93312, 94932, 69632, 20412, 1124, 12} %t A156353 Clear[t, n, m]; %t A156353 t[n_, m_] = (m^(n - m) + (n - m)^m); %t A156353 Table[Table[t[n, m], {m, 1, n - 1}], {n, 2, 12}]; %t A156353 Flatten[%] %o A156353 (Python) %o A156353 t=int((math.sqrt(8*n-7) - 1)/ 2) %o A156353 m=((t*t+3*t+4)/2-n)**(n-t*(t+1)/2)+(n-t*(t+1)/2)**((t*t+3*t+4)/2-n) %o A156353 # _Boris Putievskiy_, Dec 14 2012 %Y A156353 Cf. A005652 is the same table with row 0 and column 0 included. %K A156353 nonn,tabl %O A156353 1,1 %A A156353 _Roger L. Bagula_, Feb 08 2009 %E A156353 Edited by _Franklin T. Adams-Watters_, Oct 26 2009