OFFSET
1,2
COMMENTS
All terms are perfect squares.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Vladimir Shevelev, A set of sequences of perfect squares
EXAMPLE
n=16 has 4 proper divisors {1,2,4,8} from which 2 from A {2,8} and 2 from B {1,4}. So 16 is in the sequence.
MATHEMATICA
odiousQ[n_]:=OddQ[DigitCount[n, 2][[1]]];
Select[Range[200], 0==Length[#]-2Length[Select[#, odiousQ[#+5]&]]&[Most[Divisors[#^2]]]&]^2 (* Peter J. C. Moses, Nov 08 2013 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vladimir Shevelev and Peter J. C. Moses, Nov 05 2013
STATUS
approved