A268313
First term of a run of at least 10 consecutive integers which are not squarefree.
Original entry on oeis.org
221167422, 221167423, 262315467, 363504972, 463239475, 1202800371, 1407472722, 1407472723, 1557947844, 1609077723, 1911823144, 2217728772, 2695179044, 2737800168, 2847305571, 3639720042, 3639720043, 3672883247, 3865964268, 3865964269, 3982659575, 4246929267, 4818537743, 4982931368
Offset: 1
-
s10[x_] := Apply[Plus, Table[Abs[MoebiusMu[x+j]], {j, 0, 9}]]; Do[If[Equal[s10[n], 0], Print[n]], {n, 10^8, 10^10}]
A268314
First term of a run of at least 11 consecutive integers which are not squarefree.
Original entry on oeis.org
221167422, 1407472722, 3639720042, 3865964268, 4982931368, 5005996146, 7108776620, 8044261244, 10249558974, 12766690268, 13585489166, 19792784322, 26995377572, 30410811296, 30477326444, 32070270968, 34317891368, 39956560824, 40841363528, 42216508746, 43133805944, 46295514872, 47255689915
Offset: 1
-
s11[x_] := Apply[Plus, Table[Abs[MoebiusMu[x+j]], {j, 0, 10}]]; Do[If[Equal[s11[n], 0], Print[n]], {n, 10^8, 10^13}]
A020753
Sizes of successive increasing gaps between squarefree numbers.
Original entry on oeis.org
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19
Offset: 1
The first gap in A005117 occurs between 1 and 2 and has length 1. The next larger gap occurs between 3 and 5 and has length 2. The next larger gap is between 7 and 10 and has length 3. Etc. We are only interested in gaps that set new records.
A109473
Let m = n-th squarefree number = A005117(n), and consider the smallest pair of consecutive squarefree numbers (r,s) with gcd(r,s) = m; sequence gives values of r.
Original entry on oeis.org
1, 422, 174, 22830, 9216772051242, 234374
Offset: 1
n | m | a(n) = r
---+----+---------------
1 | 1 | 1
2 | 2 | 422
3 | 3 | 174
4 | 5 | 22830
5 | 6 | 9216772051242
6 | 7 | 234374
7 | 10 | ?
8 | 11 | 21971536246
9 | 13 | 8678016978774
10 | 14 | ?
11 | 15 | 36442589727570
Specifically, 174 is squarefree, 177 is the next squarefree integer, and gcd(174,177) = 3; this is the first pair of consecutive squarefree numbers whose GCD is 3, so a(3)=174. - _Jud McCranie_, Nov 25 2019
Don Reble pointed out that the value of a(5), 9216772051254, given in the DATA section should have been 9216772051242, as in the EXAMPLE section. Revised definition to clarify the difference between n and m. -
N. J. A. Sloane, Nov 25 2019
A182433
Smallest number such that the next n integers each have the square of one of the first n primes as a factor in order.
Original entry on oeis.org
7, 547, 29347, 1308247, 652312447, 180110691547, 65335225716547, 38733853511213647, 4368761145612023947, 1804216772228848838647, 14884872991210984993091647, 9816873967836575781598117447, 143397994078495393809327283088347
Offset: 2
a(3) = 547 as that is the solution to the simultaneous congruences x = 3 mod 4 = 7 mod 9 = 22 mod 25. We verify that the next 3 integers meet the requirement: 548 = 4 * 137, 549 = 9 * 61, 550 = 25 * 2 * 11.
a(4) = 29347 as that is the solution to the simultaneous congruences x = 3 mod 4 = 7 mod 9 = 22 mod 25 = 45 mod 49. We verify that the next 4 integers meet the requirement: 29348 = 4 * 11 * 23 * 29, 29349 = 9 * 3 * 1087, 29350 = 25 * 2 * 587, 29351 = 49 * 599.
-
Table[ChineseRemainder[Prime[Range[n]]^2 - Range[n], Prime[Range[n]]^2], {n, 2, 14}]
A055554
An arithmetic progression each term of which is followed by at least 4 nonsquarefree consecutive integers.
Original entry on oeis.org
242, 1757711582, 3515422922, 5273134262, 7030845602, 8788556942, 10546268282, 12303979622, 14061690962, 15819402302, 17577113642, 19334824982, 21092536322, 22850247662, 24607959002, 26365670342
Offset: 1
Comments