|
| |
|
|
A097655
|
|
Numbers n such that n=d_1!!*d_2!!*...*d_k!! where d_1 d_2 ... d_k is the decimal expansion of n.
|
|
6
| | |
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| All terms are of the form 2^i*3^j*5^k*7^l.
|
|
|
EXAMPLE
| 18432 is in the sequence because 18432=1!!*8!!*4!!*3!!*2!!.
|
|
|
MATHEMATICA
| Do[h=IntegerDigits[n]; l=Length[h]; If[n==Product[h[[k]]!!, {k, l}], Print[n]], {n, 2000000000}]
|
|
|
CROSSREFS
| Cf. A097653, A097654, A097643, A102279.
Sequence in context: A162100 A203966 A167444 * A080749 A070973 A054496
Adjacent sequences: A097652 A097653 A097654 * A097656 A097657 A097658
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Farideh Firoozbakht (mymontain(AT)yahoo.com), Sep 10 2004
|
|
|
EXTENSIONS
| More terms from Farideh Firoozbakht (mymontain(AT)yahoo.com), Jan 08 2005
|
| |
|
|