A141807 Numbers k such that the maximal prime power divisors of k form a run of integers.
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 16, 17, 19, 20, 23, 25, 27, 29, 31, 32, 37, 41, 43, 47, 49, 53, 56, 59, 60, 61, 64, 67, 71, 72, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 125, 127, 128, 131, 137, 139, 149, 151, 157, 163, 167, 169, 173, 179, 181, 191
Offset: 1
Keywords
Examples
The prime factorization of 60 is 2^2 * 3^1 * 5^1. Since 5^1 = 2^2 + 1 = 3^1 + 2 (i.e., the prime powers, in some order, occur in an arithmetic progression with a difference of 1 between consecutive terms), then 60 is included in the sequence.
Links
- Ivan Neretin, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[192], (pp = Sort[#[[1]]^#[[2]] & /@ FactorInteger@#]) - pp[[1]] + 1 == Range@Length@pp &] (* Ivan Neretin, Aug 13 2015 *)
Extensions
Extended by Ray Chandler, Jun 21 2009
New name from Peter Munn, Aug 31 2022
Comments