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.

A236751 Positive integers n such that n^3 divided by the digital sum of n is a cube.

Original entry on oeis.org

1, 8, 10, 26, 44, 62, 80, 100, 116, 134, 152, 170, 206, 224, 242, 260, 314, 332, 350, 404, 422, 440, 512, 530, 602, 620, 710, 800, 999, 1000, 1016, 1034, 1052, 1070, 1106, 1124, 1142, 1160, 1214, 1232, 1250, 1304, 1322, 1340, 1412, 1430, 1502, 1520, 1610
Offset: 1

Views

Author

Colin Barker, Jan 30 2014

Keywords

Examples

			152 is in the sequence because the digital sum of 152 is 8, and 152^3/8 = 438976 = 76^3.
		

Crossrefs

Programs

  • PARI
    s=[]; for(n=1, 3000, d=sumdigits(n); if(n^3%d==0 && ispower(n^3\d, 3), s=concat(s, n))); s