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!)
A248353 Kaprekar numbers, allowing powers of 10: n such that n=q+r and n^2=q*10^m+r, for some m >= 1, q>=0 and 0<=r<10^m. 5
1, 9, 10, 45, 55, 99, 100, 297, 703, 999, 1000, 2223, 2728, 4879, 4950, 5050, 5292, 7272, 7777, 9999, 10000, 17344, 22222, 38962, 77778, 82656, 95121, 99999, 100000, 142857, 148149, 181819, 187110, 208495, 318682, 329967, 351352, 356643, 390313, 461539 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Powers of 10 were excluded in Kaprekar's original definition (A006886), see also A045913.
LINKS
Eric Weisstein's World of Mathematics, Kaprekar Number
Wikipedia, Kaprekar number
FORMULA
a(n) = sqrt(A102766(n)).
PROG
(Haskell)
a248353 n = a248353_list !! (n-1)
a248353_list = filter k [1..] where
k x = elem x $ map (uncurry (+)) $
takeWhile ((> 0) . fst) $ map (divMod (x ^ 2)) a011557_list
CROSSREFS
Cf. A006886 (subsequence), A045913, A053816, A011557, A102766.
Sequence in context: A344132 A154389 A041172 * A156857 A259914 A368047
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 05 2014
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)