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.

A061763 Numbers k such that k is divisible by A061762(k) and the product of digits of k (A007954(k)) is not zero.

Original entry on oeis.org

19, 29, 39, 42, 49, 59, 69, 79, 89, 99, 126, 132, 285, 312, 522, 594, 1134, 1144, 1159, 1211, 1275, 1323, 1365, 1573, 1632, 1634, 1674, 1715, 1813, 1815, 1911, 1919, 1932, 1944, 2133, 2139, 2516, 2793, 3132, 3135, 3161, 3211, 3213, 3216, 3321, 3363, 3393
Offset: 1

Views

Author

Amarnath Murthy, May 20 2001

Keywords

Comments

Intersection of A038366 and A052382 (zeroless numbers). - Michel Marcus, Oct 29 2019

Examples

			42 is a term as 4+2 + 2*4 = 14 and 42 = 14*3.
		

References

  • S. Parmeswaran, S+P numbers, Mathematics Informatics Quarterly, Vol. 9, No. 3 Sept. 1999, Bulgaria.

Crossrefs

Programs

  • Mathematica
    Select[Range[3400], (y = Times @@ (x = IntegerDigits[#])) != 0 && Divisible[#, Plus @@ x + y] &] (* Jayanta Basu, Jul 14 2013 *)
  • PARI
    isok(k) = my(d=digits(k)); vecmin(d) && ((k % (vecprod(d) + vecsum(d))) == 0);

Extensions

Corrected and extended by Larry Reeves (larryr(AT)acm.org), May 23 2001
Offset corrected by Giovanni Resta, Oct 29 2019