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”).
%I #11 Jul 01 2018 03:57:56
%S 0,1,4,9,64,144,225,324,441,576,729,900,1681,3364,3481,4624,7225,9025,
%T 12769,14884,21025,23104,24649,24964,27556,30976,32041,33856,36100,
%U 37249,37636,44944,48841,56644,63001,65536,66049,70756,75076,75625,80089,80656,85264
%N Squares whose arithmetic mean of digits is an integer (i.e., the sum of digits is a multiple of the number of digits).
%H Jon E. Schoenfield, <a href="/A069711/b069711.txt">Table of n, a(n) for n = 1..10000</a>
%t Do[ If[ IntegerQ[ Apply[ Plus, IntegerDigits[n^2]] / Floor[ Log[10, n^2] + 1]], Print[n^2]], {n, 1, 10^3}]
%Y Cf. A069709, A069710, A069712.
%K base,nonn
%O 1,3
%A _Amarnath Murthy_, Apr 08 2002
%E Edited and extended by _Robert G. Wilson v_, Apr 12 2002
%E 0 prepended as a(1) and a(27)-a(43) from _Jon E. Schoenfield_, Jun 28 2018