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!)
A066825 a(1) = 1; set of digits of a(n)^2 is a subset of the set of digits of a(n+1)^2. 7
1, 4, 13, 14, 31, 36, 54, 96, 113, 311, 487, 854, 1036, 1277, 1646, 3214, 3267, 3723, 4047, 4554, 4896, 5376, 10136, 13147, 13268, 16549, 20513, 21877, 25279, 26152, 27209, 28582, 31723, 32043, 32286, 33144, 35172, 35337, 35757, 35853 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Probably infinite and dense over Z+.
LINKS
PROG
(Haskell)
import Data.List ((\\))
a066825 n = a066825_list !! (n-1)
a066825_list = 1 : f 1 (drop 2 a000290_list) where
f x (q:qs) | all (`elem` show q) xs = y : f y qs
| otherwise = f x qs
where y = a000196 q; xs = show (x * x)
-- Reinhard Zumkeller, Nov 22 2012
CROSSREFS
Sequence in context: A135465 A135783 A135406 * A014563 A066774 A075339
KEYWORD
nonn,base
AUTHOR
David W. Wilson, Feb 05 2002
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 March 29 04:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)