login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078237 a(1) = 6, a(n+1) = smallest multiple of a(n) using only digits (4,6,8,9,0) and not divisible by 10. 3
6, 48, 96, 864, 6048, 489888, 460984608, 4880444044896, 6604089990008099904, 6406898466996448048966464, 488494490499084904898890846098449664 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

Sequence is infinite - see Comments in A078233. - Fung Cheok Yin (cheokyin_restart(AT)yahoo.com.hk), Sep 02 2006

Terms after a(8) have at least 18 digits. - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 01 2007

MAPLE

A078237 := proc(nmax) local a, k, anext, baddigs, overl; a := [6] ; baddigs := {1, 2, 3, 5, 7} ; while nops(a) <nmax do k := 2 ; while true do anext := k*op(-1, a) ; overl := baddigs intersect convert(convert(anext, base, 10), set) ; if ( anext mod 10 <> 0) and nops(overl) = 0 then a := [op(a), anext] ; print(a); break ; else k := k+1 ; fi ; od ; od ; RETURN(a) ; end: A078237(20) ; - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 01 2007

CROSSREFS

Cf. A078236, A078238.

Sequence in context: A104256 A192887 A000252 * A052651 A153796 A167547

Adjacent sequences:  A078234 A078235 A078236 * A078238 A078239 A078240

KEYWORD

base,more,nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Nov 23 2002

EXTENSIONS

a(7) from Jonathan Vos Post (jvospost3(AT)gmail.com), Mar 22 2006

a(8) from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 01 2007

More terms from Robert Gerbicz (robert.gerbicz(AT)gmail.com), May 09 2008

a(11) from Donovan Johnson (donovan.johnson(AT)yahoo.com), Sep 05 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 03:33 EST 2012. Contains 205694 sequences.