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 A129246 #22 Jan 20 2025 16:23:15 %S A129246 1,1,3,1,4,4,1,7,7,7,1,8,8,8,6,1,15,15,15,12,12,1,24,24,24,28,28,8,1, %T A129246 60,60,60,56,56,15,15,1,168,168,168,120,120,24,24,13,1,480,480,480, %U A129246 360,360,60,60,14,18,1,1512,1512,1512,1170,1170,168,168,24,39,12,1,4800,4800 %N A129246 Iterated sum of divisors array A[k,n] = k-th iterate of sigma(n), by upward antidiagonals. %H A129246 Robert Israel, <a href="/A129246/b129246.txt">Table of n, a(n) for n = 1..10011</a> (first 142 antidiagonals, flattened) %F A129246 A[k,n] = sigma^k(n), where sigma^k denotes functional iteration. %e A129246 Array begins: %e A129246 k / sigma(...sigma(n)..) nested k deep. %e A129246 1.|.1...3...4....7....6....12....8....15...13....18... %e A129246 2.|.1...4...7....8...12....28...15....24...14....39... %e A129246 3.|.1...7...8...15...28....56...24....60...24....56... %e A129246 4.|.1...8..15...24...56...120...60...168...60...120... %e A129246 5.|.1..15..24...60..120...360..168...480..168...360... %e A129246 6.|.1..24..60..168..360..1170..480..1512..480..1170... %e A129246 7.|.1..60.168..480.1170..3276.1512..4800.1512..3276... %e A129246 8.|.1.168.480.1512.3276.10192.4800.15748.4800.10192... %p A129246 A129246 := proc(k,n) option remember ; if k= 1 then numtheory[sigma](n); else A129246(k-1,numtheory[sigma](n)) ; fi ; end: for d from 1 to 13 do for n from 1 to d do printf("%d, ",A129246(d+1-n,n)) ; od: od: # _R. J. Mathar_, Oct 09 2007 %t A129246 T[n_, k_] := T[n, k] = If[n == 1, DivisorSigma[1, k], DivisorSigma[1, T[n-1, k]]]; %t A129246 Table[T[d-k+1, k], {d, 1, 13}, {k, 1, d}] // Flatten (* _Jean-François Alcover_, Sep 23 2022, after _R. J. Mathar_, except that T(n,k) replaces the unusual A(k,n) *) %Y A129246 Cf. A000203 (row 1), A051027 (row 2), A066971 (row 3). %Y A129246 Cf. A000012 (column 1), A007497 (column 2), A090896 (main diagonal). %K A129246 easy,nonn,tabl,look %O A129246 1,3 %A A129246 _Jonathan Vos Post_, May 27 2007 %E A129246 More terms from _R. J. Mathar_, Oct 09 2007