cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A110072 Numbers k such that k = sigma(d_1!!*d_2!!*...*d_j!!) where d_1 d_2 ... d_j is the decimal expansion of k.

Original entry on oeis.org

1, 163800, 1547520, 81254720
Offset: 1

Views

Author

Farideh Firoozbakht, Jul 22 2005

Keywords

Comments

No more terms up to 10^25. It is very probable that there is no greater term. - Robert Gerbicz, May 09 2008
No other terms below 10^45. - Max Alekseyev, Feb 19 2024

Examples

			81254720 is a term because 81254720 = sigma(8!!*1!!*2!!*5!!*4!!*7!!*2!!*0!!).
		

Crossrefs

Programs

  • Mathematica
    Do[h = IntegerDigits[n]; l = Length[h]; If[n == DivisorSigma[1, Product[h[[k]]!!, {k, l}]], Print[n]], {n, 0, 100000000}]