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”).

A371241
Euler totient function applied to the zeroless numbers in base 3 (A032924).
3
1, 1, 2, 4, 6, 4, 12, 6, 8, 16, 10, 22, 20, 12, 16, 40, 42, 20, 42, 20, 24, 52, 66, 32, 24, 70, 36, 60, 78, 32, 110, 60, 60, 100, 48, 130, 108, 66, 72, 148, 150, 72, 156, 78, 64, 132, 100, 168, 160, 102, 210, 104, 106, 168, 228, 88, 112, 232, 96, 238, 240, 110
OFFSET
1,3
LINKS
William D. Banks and Igor E. Shparlinski, Arithmetic properties of numbers with restricted digits, Acta Arithmetica, Vol. 112, No. 4 (2004), pp. 313-332; alternative link.
FORMULA
a(n) = A000010(A032924(n)).
Asymptotic mean of phi(k)/k over A032924: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k)/A032924(k) = 27/(4*Pi^2) = 1/A214549 = 0.683917... (Banks and Shparlinski, 2004).
MATHEMATICA
EulerPhi[Select[Range[300], !MemberQ[IntegerDigits[#, 3], 0] &]]
PROG
(PARI) lista(kmax) = for(k = 1, kmax, if(vecmin(digits(k, 3)) > 0, print1(eulerphi(k), ", ")));
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amiram Eldar, Mar 16 2024
STATUS
approved