proposed
approved
proposed
approved
editing
proposed
Amiram Eldar, <a href="/A286652/b286652.txt">Table of n, a(n) for n = 1..1000</a>
approved
editing
proposed
approved
editing
proposed
allocated for Amiram EldarUnitary practical numbers: numbers n such that every 1 <= k <= usigma(n) is a sum of distinct unitary divisors of n.
1, 2, 6, 30, 42, 66, 78, 210, 330, 390, 462, 510, 546, 570, 690, 714, 798, 858, 870, 930, 966, 1050, 1110, 1122, 1218, 1230, 1254, 1290, 1302, 1326, 1410, 1470, 1482, 1518, 1554, 1590, 1650, 1722, 1770, 1794, 1806, 1830, 1914, 1950, 1974, 2010, 2046, 2130
1,2
usigma[n_] := Block[{d = Divisors[n]}, Plus @@ Select[d, GCD[#, n/#] == 1 &]]; uPracticalQ[n_] := Module[{f, p, e, prod = 1, ok = True}, If[n < 1 || (n > 1 && OddQ[n]), False, If[n == 1, True, f = FactorInteger[n]; {p, e} = Transpose[f]; r = Sort[p^e]; Do[If[r[[i]] > 1 + usigma[prod], ok = False; Break[]]; prod = prod*r[[i]], {i, Length[p]}]; ok]]]; Select[ Range[100000], uPracticalQ]
allocated
nonn
Amiram Eldar, May 27 2017
approved
editing
allocated for Amiram Eldar
recycled
allocated
proposed
approved
editing
proposed
Gaps in each minimal positive integer arithmetic sequence where any two members have GCD=1.
1, 1, 2, 2, 6, 6, 6, 6, 30, 30, 30, 30, 210, 210, 210, 210, 210, 210, 210, 210, 2310, 2310, 2310, 2310, 30030, 30030, 30030, 30030, 30030, 30030, 30030, 30030, 510510, 510510, 510510, 510510, 9699690, 9699690, 9699690, 9699690, 9699690, 9699690, 9699690, 9699690, 223092870, 223092870
1,3
a(n) is the gap between consecutive members of each arithmetic sequence of length N with smallest natural numbers not including 1. - Ophir Spector, 11 May 2017
For a coprime positive integer sequence of length n, no member can have the prime factors n/2 or less. As a result, the gap must be the product of the first primes up to n/2. - Ophir Spector, 11 May 2017
<a href="https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm">Extended Euclidean algorithm</a>
<a href="http://mathworld.wolfram.com/DiophantineEquation.html">Diophantine equations</a>
<a href="https://en.wikipedia.org/wiki/Modular_multiplicative_inverse">Modular arithmetic</a>
First sequence, of length 2, has a(1)=2 and gap=1, with the sequence {2,3}.
The next sequences are {3,4,5}, {5,7,9,11}, {5,7,9,11,13}, {7,13,19,25,31,37}.
nonn,easy,nice,changed
recycled
Ophir Spector, May 11 2017
proposed
editing