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.

A305130 Numbers k with the property that there exists a positive integer M, called multiplier, such that the sum of the digits of k times the multiplier added to the reversal of this product gives k.

Original entry on oeis.org

10, 11, 12, 18, 22, 33, 44, 55, 66, 77, 88, 99, 101, 110, 121, 132, 141, 165, 181, 201, 202, 221, 222, 261, 262, 282, 302, 303, 322, 323, 342, 343, 363, 403, 404, 423, 424, 444, 463, 483, 504, 505, 525, 545, 564, 584, 585, 605, 606, 645, 646, 666, 686, 706
Offset: 1

Views

Author

Viorel Nitica, May 26 2018

Keywords

Comments

These numbers are related to the taxicab number 1729. This is why they might be called "additive Hardy-Ramanujan numbers".

Examples

			For k = 11 the sum of the digits is 2 and the multiplier is 5: 2 * 5 = 10 and 10 + 01 = 11.
For k = 747 the sum of the digits is 18 and the multiplier is 7: 18 * 7 = 126 and 126 + 621 = 747.
		

Crossrefs

Subsequence of A067030.

Programs

  • Mathematica
    Block[{k, d, j}, Reap[Do[k = 1; d = Total@ IntegerDigits[i]; While[Nor[k > i, Set[j, # + IntegerReverse@ #] == i &[d k]], k++]; If[j == i, Sow[{i, k}]], {i, 720}]][[-1, 1, All, 1]] ] (* Michael De Vlieger, Jan 28 2020 *)