A378631
Numbers that set records in A377071.
Original entry on oeis.org
1, 6, 12, 24, 30, 60, 120, 210, 420, 840, 1680, 2310, 3360, 4620, 6720, 9240, 18480, 36960, 60060, 73920, 120120, 147840, 240240, 480480, 960960, 1921920, 3843840, 7687680, 8168160, 15375360, 16336320, 30750720, 32672640, 65345280, 130690560, 261381120, 310390080
Offset: 1
-
f[x_] := Block[{i, k, m, nn, p}, nn = Product[Prime[j], {j, x}]; Set[{k, i, p}, Range[0, 2]]; {1}~Join~Union@ Reap[Until[i > x, While[Set[m, 2^k*p] <= nn, Sow[m]; k++]; k = 0; i++; p *= Prime[i] ] ][[-1, 1]] ] (* generate A070175 *);
r = 0; Reap[Do[If[# > r, r = #; Sow[n]] &@ Binomial[#2 + #1 - 1, #1 - 1] & @@ {PrimeNu[n], PrimeOmega[n]}, {n, f[10]}] ][[-1, 1]]
A377070
Irregular triangle where row n lists m such that rad(m) | n and bigomega(m) = bigomega(n), where rad = A007947 and bigomega = A001222.
Original entry on oeis.org
1, 2, 3, 4, 5, 4, 6, 9, 7, 8, 9, 4, 10, 25, 11, 8, 12, 18, 27, 13, 4, 14, 49, 9, 15, 25, 16, 17, 8, 12, 18, 27, 19, 8, 20, 50, 125, 9, 21, 49, 4, 22, 121, 23, 16, 24, 36, 54, 81, 25, 4, 26, 169, 27, 8, 28, 98, 343, 29, 8, 12, 18, 20, 27, 30, 45, 50, 75, 125, 31
Offset: 1
Triangle begins:
n row n of this sequence:
-------------------------------------------
1: {1}
2: {2}
3: {3}
4: {4}
5: {5}
6: {4, 6, 9}
7: {7}
8: {8}
9: {9}
10: {4, 10, 25}
... (Select rows appear below)
12: {8, 12, 18, 27}
14: {4, 14, 49}
15: {9, 15, 25}
18: {8, 12, 18, 27}
20: {8, 20, 50, 125}
24: {16, 24, 36, 54, 81}
30: {8, 12, 18, 20, 27, 30, 45, 50, 75, 125}
42: {8, 12, 18, 27, 28, 42, 63, 98, 147, 343}
60: {16, 24, 36, 40, 54, 60, 81, 90, 100, 135, 150, 225, 250, 375, 625}.
.
Diagrams of the rank omega(n)-1 simplexes created by row n of this sequence for select n, ordering k in row n by prime decomposition. The number k = n appears in brackets:
Rank 3:
n = 30: n = 42:
8 8
/ \ / \
12 -- 20 12 -- 28
/ \ / \ / \ / \
18 --[30]-- 50 18 --[42]-- 98
/ \ / \ / \ / \ / \ / \
27 -- 45 -- 75 -- 125 27 -- 63 --147 -- 343
.
n = 60: 16
/ \
24 -- 40
/ \ / \
36 --[60]-- 50
/ \ / \ / \
54 -- 90 -- 75 --125
/ \ / \ / \ / \
81 --150 --135 --375 --625
.
Rank 4:
n = 210:
16
40
24 56
100
60 140
36 84 196
250
150 350
90 [210] 490
54 126 294 686
625
375 875
225 525 1225
135 315 735 1715
81 189 441 1029 2401
-
rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]];
Table[k = PrimeOmega[n]; Select[Range[n^PrimeNu[n]], Divisible[n, rad[#]] && PrimeOmega[#] == k &], {n, 30}]
Original entry on oeis.org
0, 1, 1, 3, 1, 6, 1, 7, 4, 8, 1, 25, 1, 10, 9, 15, 1, 25, 1, 47, 11, 14, 1, 90, 6, 16, 13, 77, 1, 80, 1, 31, 15, 20, 13, 90, 1, 22, 17, 250, 1, 116, 1, 161, 58, 26, 1, 301, 8, 47, 21, 215, 1, 90, 17, 554, 23, 32, 1, 490, 1, 34, 90, 63, 19, 212, 1, 347, 27, 152
Offset: 1
-
rad[x_] := rad[x] = Times @@ FactorInteger[x][[All, 1]];
Block[{k}, Table[k = PrimeOmega[n];
Total@ Select[Range[n^PrimeNu[n]],
Divisible[n, rad[#]] && PrimeOmega[#] < k &], {n, 60}]]
Showing 1-3 of 3 results.
Comments