OFFSET
1,1
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
Michael De Vlieger, Plot prime(i) | a(n) at (x,y) = (n,i), for n = 1..2400, 8X vertical exaggeration.
EXAMPLE
Table of n, a(n) for select n:
n a(n) lpf(a(n))^3
---------------------------------------------
1 30 = 2 * 3 * 5 8 = 2^3
2 42 = 2 * 3 * 7 8 = 2^3
3 70 = 2 * 5 * 7 8 = 2^3
4 105 = 3 * 5 * 7 27 = 3^3
13 385 = 5 * 7 * 11 125 = 5^3
29 969 = 3 * 17 * 19 27 = 3^3
30 1001 = 7 * 11 * 13 343 = 7^3 = s(1)
39 1309 = 7 * 11 * 17 343 = 7^3 = s(2)
40 1311 = 3 * 19 * 23 27 = 3^3
45 1547 = 7 * 13 * 17 343 = 7^3 = s(3)
68 2431 = 11 * 13 * 17 1331 = 11^3
1980 61585 = 5 * 109 * 113 125 = 5^3
24929 780829 = 7 * 331 * 337 343 = 7^3
.
Let p(m) = prime(m), i the smallest index such that p(m) | a(i), j the smallest index such that lpf(a(j)) = p(m), and k the largest index such that p(m) | a(k). Let c(m) be the number of terms divisible by prime(m).
Table of m, p(m), i, j, k, c(m) for m = 1..5:
m p(m) i j k c(m)
-----------------------------------
1 2 1 1 3 3
2 3 1 4 40 23
3 5 1 13 1980 359
4 7 2 30 24929 2050
5 11 5 68 580381 22461
MAPLE
N:= 2000: # for terms <= N
P:= select(isprime, [2, seq(i, i=3..N/6, 2)]): nP:= nops(P):
sort(select(`<=`, [seq(seq(seq(P[i]*P[j]*P[k], i=1..j-1), j=2..k-1), k = 3..nP)], N)); # Robert Israel, May 11 2026
MATHEMATICA
s = Select[Range[1800], PrimeNu[#] == PrimeOmega[#] == 3 &]; Select[s, Function[{p, q}, AllTrue[q, # < p^3 &]] @@ {First[#1], #2} & @@ TakeDrop[FactorInteger[#][[;; , 1]], 1] &]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, May 09 2026
STATUS
approved
