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 A278104 #11 Dec 12 2016 09:15:45 %S A278104 1,2,1,3,2,1,4,2,5,3,2,6,4,3,2,7,4,8,5,4,3,9,6,10,7,5,11,7,12,8,6,13, %T A278104 9,7,5,14,9,15,10,8,6,16,11,17,12,9,18,12,19,13,10,20,14,11,8,21,14, %U A278104 22,15,12,9,8,23,16,13,10,9,8,24,16,13,10,9,25,17,26,18,27,19,15,28,19 %N A278104 Irregular triangle T(n,k) := A277648(n,k) for k = 1...A278102(n), read by rows. %C A278104 This triangle lists the "descending sequences across ranks" of Eggleton et al. %D A278104 R. B. Eggleton, J. S. Kimberley and J. A. MacDougall, Square-free rank of integers, submitted. %H A278104 Jason Kimberley, <a href="/A278104/b278104.txt">Table of n, a(n) for n = 1..10001 (the first 3304 rows of the triangle)</a> %e A278104 The first 23 rows are: %e A278104 1; %e A278104 2, 1; %e A278104 3, 2, 1; %e A278104 4, 2; %e A278104 5, 3, 2; %e A278104 6, 4, 3, 2; %e A278104 7, 4; %e A278104 8, 5, 4, 3; %e A278104 9, 6; %e A278104 10, 7, 5; %e A278104 11, 7; %e A278104 12, 8, 6; %e A278104 13, 9, 7, 5; %e A278104 14, 9; %e A278104 15, 10, 8, 6; %e A278104 16, 11; %e A278104 17, 12, 9; %e A278104 18, 12; %e A278104 19, 13, 10; %e A278104 20, 14, 11, 8; %e A278104 21, 14; %e A278104 22, 15, 12, 9, 8; %e A278104 23, 16, 13, 10, 9, 8; %t A278104 Map[Last, #, {2}] &@ Map[TakeWhile[FoldList[Function[s, Boole[s < 0] {First@ #2, Last@ #2}][First@ #2 - First@ #1] &, #], Total@ # > 0 &] &, #] &@ Map[DeleteCases[#, {0, 0}] &, Table[Boole[SquareFreeQ@ k] {k #^2, #} &@ Floor[n/Sqrt@ k], {n, 32}, {k, n^2}] ] // Flatten (* _Michael De Vlieger_, Nov 24 2016 *) %o A278104 (Magma) %o A278104 A277647:=func<n,k|Isqrt(n^2 div k)>; %o A278104 A277648_row:=func<n|[A277647(n,k):k in[1..n^2]|IsSquarefree(k)]>; %o A278104 A278101_row:=func<n|[A277647(n,k)^2*k:k in[1..n^2]|IsSquarefree(k)]>; %o A278104 A278104_row:=func<n|(exists(dec){A277648_row(n)[1..j]:j in[1..#row-1]|row[j]le row[j+1]}select dec else[1]) where row is A278101_row(n) >; %o A278104 &cat[A278104_row(n):n in[1..23]]; %K A278104 nonn,tabf,easy %O A278104 1,2 %A A278104 _Jason Kimberley_, Nov 15 2016