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.

Showing 1-2 of 2 results.

A053058 Cubes whose digit sum is also a cube.

Original entry on oeis.org

0, 1, 8, 125, 512, 1000, 1331, 8000, 19683, 35937, 46656, 59319, 74088, 125000, 157464, 185193, 328509, 373248, 421875, 474552, 512000, 592704, 658503, 804357, 1000000, 1030301, 1157625, 1259712, 1331000, 1367631, 1481544, 2460375, 2628072, 3176523, 4251528, 4492125, 4741632, 5268024, 5545233, 8000000, 10503459, 10941048, 11390625, 11852352, 12326391, 12812904, 17173512, 19034163, 19683000, 20346417
Offset: 1

Views

Author

Felice Russo, Feb 25 2000

Keywords

References

  • Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press, 2000.

Crossrefs

Intersection of A059094 and A000578.
Cf. A237525.

Programs

  • Mathematica
    Select[Range[0, 200]^3, IntegerQ[(Plus@@IntegerDigits[ #])^(1/3)]&] (* Dean Hickerson, Apr 08 2002 *)
    k=0;Monitor[Parallelize[While[True,If[And[IntegerQ[k^(1/3)],IntegerQ[Total[IntegerDigits[k]]^(1/3)]],Print[k]]; k++]; k], k] (* J.W.L. (Jan) Eerland, Sep 30 2024 *)
  • PARI
    v=List();for(n=0,1e2,if(ispower(sumdigits(n^3),3), listput(v, n^3))); Vec(v) \\ Charles R Greathouse IV, Sep 20 2012

Formula

a(n) = A237525(n)^3.

Extensions

More terms from James Sellers, Feb 28 2000
Edited by N. J. A. Sloane, Apr 11 2009 at the suggestion of Eric Angelini
a(33)-a(50) from J.W.L. (Jan) Eerland, Sep 30 2024

A371047 Numbers k such that the digital sum of k^4 is a fourth power.

Original entry on oeis.org

0, 1, 10, 11, 100, 101, 110, 1000, 1001, 1010, 1100, 1434, 1716, 1767, 1776, 1884, 2094, 2112, 2133, 2208, 2271, 2292, 2298, 2514, 2544, 2556, 2604, 2628, 2892, 2919, 2922, 2976, 3006, 3018, 3066, 3078, 3096, 3111, 3126, 3138, 3144, 3159, 3162, 3492, 3498, 3504
Offset: 1

Views

Author

Stefano Spezia, Mar 09 2024

Keywords

Crossrefs

Cf. A000583, A007953, A011557 (subsequence), A038444 (subsequence), A061910, A237525, A371004.

Programs

  • Mathematica
    Select[Range[0,4000]^4,IntegerQ[DigitSum[#]^(1/4)]&]^(1/4)

Formula

a(n) = A371004(n)^(1/4).
Showing 1-2 of 2 results.