OFFSET
1,2
COMMENTS
Each row is the longest strictly decreasing prefix of the corresponding row of A278101.
REFERENCES
R. B. Eggleton, J. S. Kimberley and J. A. MacDougall, Square-free rank of integers, submitted.
LINKS
FORMULA
EXAMPLE
The first 23 rows are:
1;
4, 2;
9, 8, 3;
16, 8;
25, 18, 12;
36, 32, 27, 20;
49, 32;
64, 50, 48, 45;
81, 72;
100, 98, 75;
121, 98;
144, 128, 108;
169, 162, 147, 125;
196, 162;
225, 200, 192, 180;
256, 242;
289, 288, 243;
324, 288;
361, 338, 300;
400, 392, 363, 320;
441, 392;
484, 450, 432, 405, 384;
529, 512, 507, 500, 486, 448;
MATHEMATICA
Map[TakeWhile[FoldList[Function[s, Boole[s < 0] #2][#2 - #1] &, #], # > 0 &] &, #] &@ Map[DeleteCases[#, 0] &, Table[Boole[SquareFreeQ@ k] k Floor[n/Sqrt@ k]^2, {n, 23}, {k, n^2}] ] // Flatten (* Michael De Vlieger, Nov 24 2016 *)
PROG
CROSSREFS
KEYWORD
nonn,tabf,easy
AUTHOR
Jason Kimberley, Nov 15 2016
STATUS
approved