OFFSET
1,3
COMMENTS
Trivially includes powers of 64, since 64^k = 100..00_8 = 10^(2k) when read in base 10. Moreover, for any a(n) in the sequence, 64*a(n) is also in the sequence. One could call "primitive" the terms not of this form. These primitive terms include the subsequence 64^k + 2*8^k + 1 = (8^k+1)^2, k > 0, which yields A033934 when written in base 8.
Motivated by the subsequence A267490 which lists the primes in this sequence.
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[0, 2 10^4], IntegerQ@Sqrt@FromDigits@IntegerDigits[#, 8] &] (* Vincenzo Librandi, Dec 28 2016 *)
PROG
(PARI) is(n, b=8, c=10)=issquare(subst(Pol(digits(n, b)), x, c))
(Python)
A267768_list = [int(s, 8) for s in (str(i**2) for i in range(10**6)) if max(s) < '8'] # Chai Wah Wu, Jan 20 2016
(Magma) [n: n in [0..10^4] | IsSquare(Seqint(Intseq(n, 8)))]; // Vincenzo Librandi, Dec 28 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Jan 20 2016
STATUS
approved