OFFSET
1,1
COMMENTS
Terms are multiples of 49, since no perfect power divisible by 7 can have a 7-adic valuation below 2.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) has the form (7*m)^k for some m > 0 and k > 1.
Sum_{n>=1} 1/a(n) = -Sum_{k>=2} mu(k)*zeta(k)/7^k = 0.0371288923... - Amiram Eldar, Jul 02 2022
EXAMPLE
196 is a term since 196 = (2*7)^2 is a power of a multiple of 7.
MAPLE
q:= n-> igcd(seq(i[2], i=ifactors(n)[2]))>1:
select(q, [49*i$i=1..2000])[]; # Alois P. Heinz, May 05 2022
MATHEMATICA
Select[49*Range[1200], GCD @@ FactorInteger[#][[All, 2]] > 1 &]
PROG
(PARI) isok(k) = ispower(k) && !(k % 7)
(Python)
from sympy import mobius, integer_nthroot
from oeis_sequences.OEISsequences import bisection
def A351663(n):
def f(x): return int(n+x+sum(mobius(k)*(integer_nthroot(x, k)[0]//7) for k in range(2, x.bit_length())))
return bisection(f, n, n) # Chai Wah Wu, Sep 18 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Marco Ripà, May 04 2022
STATUS
approved
