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 A182847 #8 Mar 30 2012 18:57:12 %S A182847 1,3,2,6,7,4,10,13,11,5,14,20,21,16,8,18,27,32,30,22,9,24,36,42,44,38, %T A182847 26,12,29,46,55,61,58,49,33,15,34,54,69,77,78,72,59,40,17,39,64,84,95, %U A182847 100,98,87,70,47,19,45,73,97,113,123,124,117,103,80 %N A182847 Joint-rank array of the numbers j*(i-1+r), where r=sqrt(3), i>=1, j>=1, by diagonals. %C A182847 Joint-rank arrays are defined in the first comment at A182801. %F A182847 T(i,j)=sum(k>=1, floor( j*(i-1+r)/(k-1+r) ) ) where r=sqrt(3), for i>=1, j>=1. %e A182847 Northwest corner: %e A182847 1....3....6...10... %e A182847 2....7...13...20... %e A182847 4...11...21...32... %e A182847 5...16...30...44... %t A182847 r=Sqrt[3]; %t A182847 f[i_,j_]:=Sum[Floor[j*(i-1+r)/(k-1+r)],{k,1,1+r+j(i-1+r)}]; %t A182847 TableForm[Table[f[i,j],{i,1,10},{j,1,10}]] %Y A182847 Cf. A182801, A182846, A182848, A182849. %K A182847 nonn,tabl %O A182847 1,2 %A A182847 _Clark Kimberling_, Dec 08 2010