OFFSET
1,1
COMMENTS
The digits 0,1,4,9 are squares, so no members of the sequence have those digits. - Robert Israel, Apr 03 2017
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
75 is in the sequence because neither 7 nor 5 is a square mod 75. - Corrected by Robert Israel, Apr 03 2017
MAPLE
isA177055 := proc(n) local d; for d in convert(n, base, 10) do if numtheory[quadres](d, n) <> -1 then return false; end if; end do; return true; end proc:
for n from 1 to 140 do if isA177055(n) then printf("%d, ", n) ; end if ; end do: # R. J. Mathar, Dec 12 2010
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Michel Lagneau, Dec 09 2010
STATUS
approved