|
| |
|
|
A057436
|
|
Contains digits 1 through 6 only.
|
|
5
| |
|
|
1, 2, 3, 4, 5, 6, 11, 12, 13, 14, 15, 16, 21, 22, 23, 24, 25, 26, 31, 32, 33, 34, 35, 36, 41, 42, 43, 44, 45, 46, 51, 52, 53, 54, 55, 56, 61, 62, 63, 64, 65, 66, 111, 112, 113, 114, 115, 116, 121, 122, 123, 124, 125, 126, 131, 132, 133, 134, 135, 136, 141, 142, 143
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| The ordered sequence of numbers whose digits can be generated by successively throwing a regular dice with the numbers 1,2,...6.
|
|
|
LINKS
| Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
|
|
|
FORMULA
| a(n+1) = 1 + (if a(n) mod 10 < 6 then a(n) else a(a(n)\10)*10), a(0)=1. - Reinhard Zumkeller, Jul 13 2007
|
|
|
EXAMPLE
| The number 61 can be generated by throwing a dice twice and combining the results, but 17 not.
|
|
|
MATHEMATICA
| Select[Range[200], Max[IntegerDigits[#]]<=6&& DigitCount[#, 10, 0] ==0&] (* From Harvey P. Dale, Apr 04 2011 *)
|
|
|
CROSSREFS
| Cf. A007092.
Sequence in context: A010350 A072622 A072621 * A108376 A108392 A032984
Adjacent sequences: A057433 A057434 A057435 * A057437 A057438 A057439
|
|
|
KEYWORD
| easy,nice,nonn,base
|
|
|
AUTHOR
| Thomas Schulze (jazariel(AT)tiscalenet.it), Sep 08 2000
|
|
|
EXTENSIONS
| Offset corrected by Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Aug 16 2011
|
| |
|
|