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!)
A330394 Irregular triangle T(n,k) read by rows in which n-th row lists in increasing order all integers m such that Omega(m) = n and each prime factor p of m has index pi(p) <= n. 3

%I #44 Mar 05 2020 21:05:45

%S 1,2,4,6,9,8,12,18,20,27,30,45,50,75,125,16,24,36,40,54,56,60,81,84,

%T 90,100,126,135,140,150,189,196,210,225,250,294,315,350,375,441,490,

%U 525,625,686,735,875,1029,1225,1715,2401,32,48,72,80,108,112,120,162

%N Irregular triangle T(n,k) read by rows in which n-th row lists in increasing order all integers m such that Omega(m) = n and each prime factor p of m has index pi(p) <= n.

%C Positive integers not in T are: 3, 5, 7, 10, 11, 13, 14, 15, 17, 19, 21, 22, 23, 25, 26, 28, 29, ... .

%C Row n has exactly one squarefree member: primorial(n) = A002110(n).

%C Sorting all terms (except 1) gives A324521.

%H Robert Price, <a href="/A330394/b330394.txt">Table of n, a(n) for n = 0..8788</a>

%e Triangle T(n,k) begins:

%e 1;

%e 2;

%e 4, 6, 9;

%e 8, 12, 18, 20, 27, 30, 45, 50, 75, 125;

%e ...

%p b:= proc(n, i) option remember; `if`(n=0, [1], [seq(

%p map(x-> x*ithprime(j), b(n-1, j))[], j=1..i)])

%p end:

%p T:= n-> sort(b(n$2))[]:

%p seq(T(n), n=0..5); # _Alois P. Heinz_, Mar 03 2020

%t t = Table[Union[Apply[Times, Tuples[Prime[Range[n]], {n}], {1}]], {n, 0, 5}];

%t t // TableForm

%t Flatten[t]

%Y Column k=1 gives A000079.

%Y Last elements of rows give A307539.

%Y Row lengths give A088218.

%Y Row sums give A332967(n) = A124960(2n,n).

%Y T(n,n) gives A101695(n) for n > 0.

%Y Cf. A000720, A001222, A005117, A027748, A324521.

%K nonn,tabf

%O 0,2

%A _Robert Price_, Mar 03 2020

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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)