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.

A104391 3-Smith numbers.

Original entry on oeis.org

402, 510, 700, 1113, 1131, 1311, 2006, 2022, 2130, 2211, 2240, 3102, 3111, 3204, 3210, 3220, 4031, 4300, 4410, 5310, 6004, 6100, 6300, 7031, 7120, 9000, 10034, 10125, 10206, 10251, 10304, 10413, 10521, 10612, 10800, 11033, 11111, 11114, 11116, 11121, 11141
Offset: 1

Views

Author

Eric W. Weisstein, Mar 04 2005 and Shyam Sunder Gupta, Mar 11 2005

Keywords

Examples

			402 is a 3-Smith number because the sum of the digits of its prime factors, i.e., Sp(402) = Sp(2*3*67)= 2 + 3 + 6 + 7 = 18, which is equal to 3 times the digit sum of 402, i.e., 3*S(402) = 3*(4 + 0 + 2) = 18.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[12000],Total[Flatten[IntegerDigits/@Table[#[[1]],{#[[2]]}]&/@ FactorInteger[#]]]/Total[IntegerDigits[#]]==3&] (* Harvey P. Dale, Feb 19 2013 *)