login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135539 Triangle read by rows: T(n,k) = number of divisors of n that are >= k. 21

%I #35 Jan 08 2024 01:36:51

%S 1,2,1,2,1,1,3,2,1,1,2,1,1,1,1,4,3,2,1,1,1,2,1,1,1,1,1,1,4,3,2,2,1,1,

%T 1,1,3,2,2,1,1,1,1,1,1,4,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,6,5,

%U 4,3,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1

%N Triangle read by rows: T(n,k) = number of divisors of n that are >= k.

%C Row sums give A000203.

%C Left border is A000005.

%H Seiichi Manyama, <a href="/A135539/b135539.txt">Rows n = 1..140, flattened</a>

%F Triangle read by rows, partial sums of A051731 starting from the right. A051731 as a lower triangular matrix times an all 1's lower triangular matrix.

%F From _Seiichi Manyama_, Jan 07 2023: (Start)

%F G.f. of column k: Sum_{j>=1} x^(k*j)/(1 - x^j).

%F G.f. of column k: Sum_{j>=k} x^j/(1 - x^j). (End)

%F Sum_{j=1..n} T(j, k) ~ n * (log(n) + 2*gamma - 1 - H(k-1)), where gamma is Euler's constant (A001620), and H(k) = A001008(k)/A002805(k) is the k-th harmonic number. - _Amiram Eldar_, Jan 08 2024

%e First few rows of the triangle:

%e 1;

%e 2, 1;

%e 2, 1, 1;

%e 3, 2, 1, 1;

%e 2, 1, 1, 1, 1;

%e 4, 3, 2, 1, 1, 1;

%e 2, 1, 1, 1, 1, 1, 1;

%e 4, 3, 2, 2, 1, 1, 1, 1;

%e 3, 2, 2, 1, 1, 1, 1, 1, 1;

%e 4, 3, 2, 2, 2, 1, 1, 1, 1, 1;

%e 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1;

%e 6, 5, 4, 3, 2, 2, 1, 1, 1, 1, 1, 1;

%e ...

%p with(numtheory);

%p f1:=proc(n) local d,s1,t1,t2,i;

%p d:=tau(n);

%p s1:=sort(divisors(n));

%p t1:=Array(1..n,0);

%p for i from 1 to d do t1[n-s1[i]+1]:=1; od:

%p t2:=PSUM(convert(t1,list));

%p [seq(t2[n+1-i],i=1..n)];

%p end proc;

%p for n from 1 to 15 do lprint(f1(n)); od: # _N. J. A. Sloane_, Nov 09 2018

%t T[n_, k_] := DivisorSum[n, Boole[# >= k]&];

%t Table[T[n, k], {n, 1, 15}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Feb 15 2023 *)

%o (PARI) row(n) = my(d=divisors(n)); vector(n, k, #select(x->(x>=k), d)); \\ _Michel Marcus_, Jul 23 2022

%Y Column k=1..10 give A000005, A032741, A023645, A321014, A338648, A338649, A338650, A338651, A338652, A338653.

%Y Cf. A051731, A000203.

%Y Cf. A001008, A001620, A002805.

%K nonn,easy,tabl

%O 1,2

%A _Gary W. Adamson_, Oct 30 2007

%E Clearer definition from _N. J. A. Sloane_, Nov 09 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 11 01:12 EDT 2024. Contains 372388 sequences. (Running on oeis4.)