OFFSET
1,2
COMMENTS
T(n,A038548(n)) = n. - Reinhard Zumkeller, Mar 08 2013
If we define a divisor d|n to be superior if d >= n/d, then superior divisors are counted by A038548 and listed by this sequence. - Gus Wiseman, Mar 08 2021
LINKS
Reinhard Zumkeller, Rows n = 1..1000 of triangle, flattened
EXAMPLE
Array begins:
1;
2;
3;
2,4;
5;
3,6;
7;
4,8;
3,9;
5,10;
11;
4,6,12;
13;
7,14;
5,15;
4,8,16;
MATHEMATICA
Table[Select[Divisors[n], #>=Sqrt[n]&], {n, 100}]//Flatten (* Harvey P. Dale, Jan 01 2021 *)
PROG
(Haskell)
a161908 n k = a161908_tabf !! (n-1) !! (k-1)
a161908_row n = a161908_tabf !! (n-1)
a161908_tabf = zipWith
(\x ds -> reverse $ map (div x) ds) [1..] a161906_tabf
-- Reinhard Zumkeller, Mar 08 2013
CROSSREFS
Final terms are A000027.
Initial terms are A033677.
Row lengths are A038548 (number of superior divisors).
Row sums are A070038 (sum of superior divisors).
The inferior version is A161906.
The prime terms are counted by A341591.
The squarefree terms are counted by A341592.
The prime-power terms are counted by A341593.
The strictly superior version is A341673.
The strictly inferior version is A341674.
The odd terms are counted by A341675.
A056924 counts strictly superior (or strictly inferior divisors).
A207375 lists central divisors.
KEYWORD
easy,nonn,tabf
AUTHOR
Omar E. Pol, Jun 27 2009
EXTENSIONS
More terms from Sean A. Irvine, Nov 29 2010
STATUS
approved