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.

A117241 Numbers divisible by the sum of k times the k-th digit.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 19, 20, 30, 38, 40, 50, 57, 60, 70, 76, 80, 90, 95, 100, 104, 120, 190, 200, 207, 208, 231, 240, 252, 300, 310, 360, 380, 400, 403, 414, 430, 432, 462, 465, 480, 500, 506, 528, 570, 600, 620, 625, 629, 693, 700, 702, 714, 754, 760, 800, 805, 806
Offset: 1

Views

Author

Luc Stevens (lms022(AT)yahoo.com), Apr 22 2006

Keywords

Examples

			95 is in the sequence because 1*9 + 2*5 = 19 and 95 is divisible by 19.
1232 is in the sequence because 1*1 + 2*2 + 3*3 + 4*2 = 22 and 1232 is divisible by 22.
		

Crossrefs

Cf. A156207.

Programs

  • Mathematica
    Select[Range[1000], Divisible[#, Plus @@ ((d = IntegerDigits[#]) * Range[Length[d]])] &] (* Amiram Eldar, Feb 08 2021 *)

Extensions

Missing terms inserted by Amiram Eldar, Feb 08 2021