login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A342189
Numbers k such that both k and k+1 are not exponentially 2^n-numbers.
3
135, 296, 343, 351, 375, 512, 728, 999, 1160, 1215, 1375, 1431, 1592, 1624, 2079, 2240, 2295, 2375, 2456, 2624, 2727, 2888, 2943, 3104, 3159, 3429, 3591, 3624, 3752, 3992, 4023, 4184, 4616, 4671, 4832, 4887, 4913, 5048, 5144, 5319, 5480, 5535, 5696, 5831, 6183
OFFSET
1,1
COMMENTS
The numbers of terms not exceeding 10^k for k = 3, 4, ..., are 8, 76, 775, 7776, 77845, 778303, 7783285, 77832769, ... Apparently this sequence has an asymptotic density 0.0077832...
LINKS
EXAMPLE
135 is a term since 135 = 3^3 * 5 and 136 = 2^3 * 17 both have an exponent in their prime factorization which is not a power of 2.
MATHEMATICA
exp2nQ[n_] := AllTrue[FactorInteger[n][[;; , 2]], # == 2^IntegerExponent[#, 2] &]; Select[Range[10^4], ! exp2nQ[#] && ! exp2nQ[# + 1] &]
CROSSREFS
cf. A138302.
Similar sequences: A068140, A068781, A342187, A342188.
Sequence in context: A325569 A372567 A349176 * A374461 A176313 A372691
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 04 2021
STATUS
approved