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.

A098840 Smith triangular numbers.

Original entry on oeis.org

378, 666, 861, 2556, 5253, 7503, 10296, 16653, 27261, 28920, 29890, 32896, 46056, 72771, 84255, 85905, 92235, 94395, 120786, 132870, 141778, 157641, 215496, 328455, 345696, 385881, 386760, 396495, 424581, 529935, 533028, 588070, 654940
Offset: 1

Views

Author

Shyam Sunder Gupta, Oct 10 2004

Keywords

Examples

			a(1) = 378 because 378 is a Smith number as well as a triangular number.
		

Crossrefs

Intersection of A000217 and A006753.

Programs

  • Mathematica
    Rest[Select[Accumulate[Range[1500]],!PrimeQ[#]&&Total[IntegerDigits[#]] == Total[Flatten[ IntegerDigits/@Flatten[Table[#[[1]],{#[[2]]}]&/@ FactorInteger[ #]]]]&]] (* Harvey P. Dale, Oct 20 2012 *)