OFFSET
1,1
COMMENTS
Equivalently, numbers j such that Sum_{i=2..k} A027750(j,i)^i = j for some k.
The majority of these numbers are squares.
All prime squares p^2 (A001248) are terms because the partial sum 1^1 + p^2 satisfy the condition. The terms that are not squares are given by A307137. - Michel Marcus, Mar 25 2019
EXAMPLE
The divisors of 68 are 1, 2, 4, 17, 34, 68; 1^1 + 2^2 + 4^3 = 69, so 68 is a term.
MAPLE
isA194269 := proc(n) local dgs , i, k; dgs := sort(convert(numtheory[divisors](n), list)) ; for k from 1 to nops(dgs) do if add(op(i, dgs)^i, i=1..k) = n+1 then return true; end if; end do; false ; end proc:
for n from 1 to 30000 do if isA194269(n) then print(n); end if; end do: # R. J. Mathar, Aug 27 2011
PROG
(PARI) isok(n) = {my(d=divisors(n), s=0); for(k=1, #d, s += d[k]^k; if(s == n+1, return(1)); if(s > n+1, break); ); 0; } \\ Michel Marcus, Mar 25 2019
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Michel Lagneau, Aug 27 2011
EXTENSIONS
Edited by Max Alekseyev, Nov 22 2024
STATUS
approved