OFFSET
1,2
COMMENTS
The relative asymptotic density of this sequence within the zeroless numbers in base 3 is 27/(4*Pi^2) = 1/A214549 = 0.683917... (Banks and Shparlinski, 2004).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
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.
MATHEMATICA
Select[Range[500], !MemberQ[IntegerDigits[#, 3], 0] && SquareFreeQ[#] &]
PROG
(PARI) is(n) = vecmin(digits(n, 3)) > 0 && issquarefree(n);
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amiram Eldar, Mar 16 2024
STATUS
approved