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.

A098113 Numbers n such that n=(d_1+2)*(d_2+2)*...*(d_k+2) where d_1 d_2 ... d_k is the decimal expansion of n.

Original entry on oeis.org

12, 24, 35, 56
Offset: 1

Views

Author

Farideh Firoozbakht, Sep 24 2004

Keywords

Comments

It seems that there are no further terms.
No other terms below 10^150. - Max Alekseyev, Jan 25 2015

Examples

			56 is in the sequence because 56=(5+2)*(6+2).
		

Crossrefs

Programs

  • Mathematica
    Do[d=IntegerDigits[n];k=Length[d];If[n==Product[d[[j]]+2, {j, k}], Print[n]], {n, 10000000}]