OFFSET
1,1
COMMENTS
A194269 lists the integers j that satisfy Sum_{i=1..k} d(i)^i = j+1 for some k where d() is the sorted list of divisors of j.
All squares of primes (A001248) are in A194269 (with k=2), but some terms of A194269 are not in A001248.
So the sequence can be thought of as the set of integers that satisfy Sum_{i=1..k} d(i)^i = j+1 for k > 2.
Also in the sequence are 63602175290616, 27232626132792608, 131685306017557752 and 1125089196456707568267636780. - Daniel Suteu, Mar 28 2019
a(8) > 2.5*10^11. 146891545244361186001164385301664828062299990188246080274986418 and 1074195891803336036687617104130500495489848428998310547357799403665 are also terms. - Giovanni Resta, Mar 29 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.
PROG
(PARI) isok1(n) = {my(d=divisors(n), s=0); for(k=1, #d, s += d[k]^k; if (s == n+1, return (k)); if (s > n+1, break); ); } \\ A194269
isok2(n) = issquare(n) && isprime(sqrtint(n));
isok(n) = isok1(n) && !isok2(n);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Mar 26 2019
EXTENSIONS
a(6)-a(7) from Giovanni Resta, Mar 29 2019
STATUS
approved