A325058 Starts of runs of 7 consecutive exponentially odd numbers (A268335).
29, 37, 53, 101, 133, 181, 213, 373, 453, 509, 541, 613, 677, 757, 893, 901, 917, 997, 1109, 1117, 1157, 1189, 1237, 1253, 1333, 1405, 1429, 1477, 1509, 1541, 1589, 1621, 1701, 1749, 1757, 1765, 1829, 1885, 1941, 2077, 2117, 2133, 2181, 2213, 2261, 2333, 2341
Offset: 1
Keywords
Examples
29 is in the sequence since 29, 30 = 2 * 3 * 5, 31, 32 = 2^5, 33 = 3 * 11, 34 = 2 * 17 and 35 = 5 * 7 are 7 consecutive exponentially odd numbers, all having prime factorization with only odd exponents.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A268335.
Programs
-
Mathematica
expOddQ[n_] := AllTrue[FactorInteger[n][[;; , 2]], OddQ]; aQ[n_] := AllTrue[8n + Range[5, 11], expOddQ]; 8 * Select[Range[300], aQ] + 5
Comments