OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
Multiplicative with a(p^e) = e+1 if p is in A092506 (i.e., p is either 2 or a Fermat prime), and 1 otherwise.
a(n) >= 1, with equality if and only if all the prime factors of n are not of the form 2^k + 1.
a(n) <= A000005(n), with equality if and only if all the prime factors of n are in A092506 (n is in A143513 assuming that there are only 5 Fermat primes).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 1/Product_{k>=1} (1 - 1/A092506(k)) = 3.99999999906867742538... . This value is exactly 4294967295/1073741824 if there are only 5 Fermat primes.
MATHEMATICA
q[n_] := AllTrue[FactorInteger[n][[;; , 1]], # - 1 == 2^IntegerExponent[# - 1, 2] &]; f[p_, e_] := If[q[p], e + 1, 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = {my(f=factor(n)); prod(i=1, #f~, if((f[i, 1]-1) >> valuation(f[i, 1]-1, 2) == 1 , f[i, 2] + 1, 1))};
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Dec 29 2023
STATUS
approved