The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A080811 a(1) = 8, a(n)= smallest n-th power obtained by inserting digits anywhere in a(n-1). 6
8, 81, 68921, 671898241, 67499118303941862584001, 6576499147308118090309591239435044518621593475579845001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
buffedStr := proc(n, candid) local f ; if length(n) = 0 then RETURN(true) ; fi ; f := SearchText(substring(n, 1), candid) ; if f = 0 then RETURN(false) ; else if buffedStr(substring(n, 2..-1), substring(candid, f+1..-1)) = true then RETURN(true) ; else RETURN(false) ; fi ; fi ; end: A080811 := proc(preva, n) local i, tst ; i := 1 ; while true do tst := i^n ; if buffedStr(convert(preva, string), convert(tst, string)) = true then RETURN(tst) ; fi ; i := i+1 ; od: end: an :=8 ; for n from 2 to 15 do an := A080811(an, n) ; end ; # R. J. Mathar, Sep 20 2006
CROSSREFS
Sequence in context: A022504 A104126 A100879 * A249898 A073699 A356829
KEYWORD
base,more,nonn
AUTHOR
Amarnath Murthy, Mar 22 2003
EXTENSIONS
2 more terms from R. J. Mathar, Sep 20 2006
One more term. Sean A. Irvine, Aug 31 2009
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 May 16 08:41 EDT 2024. Contains 372552 sequences. (Running on oeis4.)