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 A246003 #65 Sep 08 2022 08:46:09 %S A246003 1,0,2,0,2,9,0,4,20,64,0,6,48,204,625,0,10,121,682,2604,7776,0,18,312, %T A246003 2340,11160,39990,117649,0,32,820,8192,48828,209952,720600,2097152,0, %U A246003 56,2187,29127,217013,1119744,4483734,14913080,43046721,0,102,5904,104857 %N A246003 Floor(m^n/n) with n >= m >= 1. %e A246003 Triangle begins: %e A246003 1; %e A246003 0, 2; %e A246003 0, 2, 9; %e A246003 0, 4, 20, 64; %e A246003 0, 6, 48, 204, 625; %e A246003 0, 10, 121, 682, 2604, 7776; %e A246003 0, 18, 312, 2340, 11160, 39990, 117649; %e A246003 0, 32, 820, 8192, 48828, 209952, 720600, 2097152; %e A246003 0, 56, 2187, 29127, 217013, 1119744, 4483734, 14913080, 43046721; %e A246003 ... %t A246003 Table[Floor[m^n/n], {n, 1, 10}, {m, 1, n}] %o A246003 (Magma) /* As triangle: */ [[Floor(m^n/n): m in [1..n]]: n in [1..10]]; %o A246003 (PARI) tabl(nn) = {for (n=1, nn, for (m=1, n, print1(m^n\n, ", ");); print(););} \\ _Michel Marcus_, Dec 12 2014 %Y A246003 Cf. A117142. %Y A246003 Cf. for the k-th column: A063524 (k=1), A000799(k=2), A092763(k=3), A129794(k=4), A129795(k=5), A129796 (k=6), A129797 (k=7), A129798 (k=8), A129799 (k=9). %K A246003 nonn,tabl %O A246003 1,3 %A A246003 _Vincenzo Librandi_, Dec 11 2014