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

A229766
Odd numbers whose square's binary reversal is also a square.
2
1, 3, 4523, 11991, 18197, 66075, 72225, 141683, 1092489, 3168099, 6001209, 6226335, 6435309, 12489657, 17906499, 50429883, 51928701, 68301841, 295742437, 390117873, 542959199, 554456167, 566494057
OFFSET
1,2
COMMENTS
A003166 is a subsequence, except A003166(1)=0.
All odd numbers n such that A068527(A030101(n^2)) = 0. - Antti Karttunen, Dec 20 2013
FORMULA
a(n) = sqrt(A229687(n)).
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A229766 (MATCHING-POS 1 1 (lambda (n) (and (odd? n) (zero? (A068527 (A030101 (* n n))))))))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Alex Ratushnyak, Dec 19 2013
STATUS
approved