login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A164770 Numbers k with the property that the average digit of k^2 is 2. 10
145, 152, 179, 190, 251, 3182, 3190, 3199, 3245, 3290, 3335, 3362, 3380, 3470, 3479, 3496, 3550, 3649, 3650, 3749, 3821, 4001, 4010, 4100, 4495, 4496, 4540, 4550, 4585, 4595, 4639, 4649, 4810, 4820, 4910, 4990, 5701, 5710, 5755, 5800, 5900, 6350, 6404 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There are 6368 such k's < 10^7: see link to 15217.html.
LINKS
EXAMPLE
145 is a term because 145^2 = 21025 and (2 + 1 + 0 + 2 + 5)/5 = 2.
MATHEMATICA
Select[Range[6500], Mean[IntegerDigits[#^2]]==2&] (* Harvey P. Dale, May 10 2021 *)
PROG
(PARI) dsum(n)={my(s=0); while(n>9, s+=n%10; n\=10); s+n};
for(n=1, 1e6, if(dsum(n^2)/#Str(n^2)==2, print1(n", "))) \\ Charles R Greathouse IV, Nov 01 2009
CROSSREFS
Subsequence of A164817.
Average of digits of n^2 = s: A164771 (s=1), A164770 (s=2), A164782 (s=3), A164776 (s=4), A164774 (s=5), A164778 (s=6), A164773 (s=7), A164772 (s=8).
Sequence in context: A099648 A043652 A296889 * A159777 A326258 A051414
KEYWORD
base,nonn
AUTHOR
Zak Seidov, Aug 26 2009
EXTENSIONS
Edited by Charles R Greathouse IV, Mar 23 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)