OFFSET
1,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
5778 is in the sequence because (1) it is a triangular number and (2) the sum of its digits 5+7+7+8=27 is a cube.
MATHEMATICA
Select[Accumulate[Range[500]], IntegerQ[Power[Total[IntegerDigits[#]], (3)^-1]]&] (* Harvey P. Dale, Dec 19 2010 *)
Select[Accumulate[Range[0, 500]], IntegerQ[Surd[Total[IntegerDigits[#]], 3]]&] (* Harvey P. Dale, Jan 08 2023 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 29 2006
EXTENSIONS
Corrected by Harvey P. Dale, Jan 08 2023
STATUS
approved