|
| |
|
|
A066299
|
|
Numbers n such that the digits of n are also digits of binomial(2n,n).
|
|
0
| |
|
|
5, 8, 12, 14, 15, 16, 23, 24, 25, 29, 34, 35, 36, 37, 38, 39, 45, 47, 48, 49, 56, 58, 59, 67, 68, 69, 78, 79, 89, 123, 124, 125, 126, 127, 128, 129, 134, 135, 136, 137, 138, 139, 145, 146, 147, 148, 149, 156, 157, 158, 159, 167, 168, 169, 178, 179, 189, 234, 235
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
EXAMPLE
| Binomial(2*12,12)= 2704156, which contains all digits of 12, so 12 is a term of the sequence.
|
|
|
MATHEMATICA
| Do[a = IntegerDigits[Binomial[2 n, n]; b = IntegerDigits[n]; If[Intersection[a, b] == b, Print[n]], {n, 1, 400}]
|
|
|
CROSSREFS
| Sequence in context: A003246 A143748 A124378 * A161394 A100493 A005661
Adjacent sequences: A066296 A066297 A066298 * A066300 A066301 A066302
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Feb 14 2002
|
| |
|
|