OFFSET
1,3
EXAMPLE
1686394 is in the sequence (the largest term) because 1686394=1+(6^8)+(6^3)+(9^4).
MATHEMATICA
Do[h=IntegerDigits[n]; k=Length[h]; If[ OddQ[k] && Select[ Range[k/2], h[[2# ]] ==0== h[[2#+1]] &]=={} && n==h[[1]]+ Sum[h[[2j]]^h[[2j+1]], {j, k/2}], Print[n]], {n, 10^9}]
olQ[n_]:=Module[{idn=IntegerDigits[n], d2}, d2=Partition[Rest[idn], 2]; OddQ[ Length[ idn]]&&FreeQ[d2[[All, 2]], 0]&&Total[#[[1]]^#[[2]]&/@d2]+ idn[[1]] == n]; Join[{0}, Select[Range[169*10^4], olQ]] (* Harvey P. Dale, Jul 09 2019 *)
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Farideh Firoozbakht, Sep 15 2005
STATUS
approved