login
A392367
Numbers whose greatest prime factor is a Fermat prime.
2
3, 5, 6, 9, 10, 12, 15, 17, 18, 20, 24, 25, 27, 30, 34, 36, 40, 45, 48, 50, 51, 54, 60, 68, 72, 75, 80, 81, 85, 90, 96, 100, 102, 108, 119, 120, 125, 135, 136, 144, 150, 153, 160, 162, 170, 180, 187, 192, 200, 204, 216, 221, 225, 238, 240, 243, 250, 255, 257, 270
OFFSET
1,1
COMMENTS
A143513 \ {1} is a subsequence that does not include the terms 119, 187, 221, 238, 357, 374, 442, 476, 561, 595, ... .
Numbers k such that A006530(k) is in A019434.
LINKS
FORMULA
Sum_{n>=1} 1/a(n) = Sum_{q in A019434} (1/q) * Product_{primes p <= q} p/(p-1) = 2.11507281179419933506... . If there are only 5 Fermat primes, then this sum is a rational number: 2.6569019...*10^23656 / 1.2561751...*10^23656.
MATHEMATICA
fermatQ[p_] := OddQ[p] && p == 2^IntegerExponent[p-1, 2] + 1;
Select[Range[300], fermatQ[FactorInteger[#][[-1, 1]]] &]
PROG
(PARI) isfermat(p) = p % 2 && p == 1 << valuation(p-1, 2) + 1;
isok(k) = k > 1 && isfermat(vecmax(factor(k)[, 1]));
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Jan 09 2026
STATUS
approved