A071134 Squares which repeat with at least two full periods when written in base 8.
9, 36, 6241, 116964, 418609, 28121809, 477247716, 1277991001, 1967188609, 5111964004, 7681646025, 73073443041, 79698371481, 91424593225, 120297291921, 292293772164, 318793485924, 1954689202404, 5429696889241, 5480313774049, 21718787556964, 21921255096196
Offset: 1
Examples
647^2 = 418609 = 146|146|1 in base 8. 21846^2 = 477247716 = 34344|34344 in base 8.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..57 (terms < 8^27)
Programs
-
Mathematica
psq[b_, nd_] := Block[{sq={}, r, x}, Do[r = Mod[nd, p]; Do[x = (b^( Floor[nd/p] p) - 1)/(b^p - 1) t b^r + Floor[t/b^(p - r)]; If[ IntegerQ@ Sqrt@ x, AppendTo[ sq, x]], {t, b^(p - 1), b^p - 1}], {p, nd/2}]; sq]; Union @@ (psq[8, #] & /@ Range[11]) (* Giovanni Resta, Aug 01 2018 *)
Extensions
Missing a(18) and more terms from Giovanni Resta, Aug 01 2018