Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A063113
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A063113 a(1) = 1; a(n+1) = a(n) + product of nonzero digits of a(n) when written in base 3. But display sequence in base 10. +0
4
1, 2, 4, 5, 7, 9, 10, 11, 13, 14, 16, 18, 20, 24, 28, 29, 31, 32, 34, 36, 37, 38, 40, 41, 43, 45, 47, 51, 55, 57, 59, 63, 65, 69, 73, 77, 85, 86, 88, 90, 91, 92, 94, 95, 97, 99, 101, 105, 109, 110, 112, 113, 115, 117, 118, 119, 121, 122, 124, 126, 128, 132, 136, 138 (list; graph; listen)
OFFSET

1,2

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

P. A. Loomis, An Interesting Family of Iterated Sequences

MATHEMATICA

f[n_Integer] := (a = Sort[ IntegerDigits[n, 3]]; While[ a[[1]] == 0, a = Delete[a, 1]]; n + Apply[ Times, a] ); NestList[f, 1, 65]

PROGRAM

(PARI) baseE(x, b)= { local(d, e, f); e=0; f=1; while (x>0, d=x-b*(x\b); x\=b; e+=d*f; f*=10); return(e) } ProdNzD(x)= { local(d, p); p=1; while (x>9, d=x-10*(x\10); if (d, p*=d); x\=10); return(p*x) } { for (n=1, 1000, if (n>1, a=baseE(b+= ProdNzD(a), 3), a=1; b=1); write("b063113.txt", n, " ", b) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 19 2009]

CROSSREFS

Cf. A063108, A063112, A063114.

Sequence in context: A140204 A084577 A026457 this_sequence A122825 A159615 A026463

Adjacent sequences: A063110 A063111 A063112 this_sequence A063114 A063115 A063116

KEYWORD

nonn,base

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Aug 08 2001

EXTENSIONS

More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 09 2001

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 18 21:37 EST 2009. Contains 171024 sequences.


AT&T Labs Research