OFFSET
1,3
LINKS
Lars Blomberg, Table of n, a(n) for n = 1..10000
B. Avila and T. Khovanova, Free Fibonacci Sequences, arXiv preprint arXiv:1403.4614, 2014
EXAMPLE
{3, 5, 6, 8, 9} - the set of digits of 39568 and of 39568^5, so 39568 is in the sequence.
PROG
(Magma) [n : n in [0..10827439] | Set(Intseq(n)) eq Set(Intseq(n^5))];
(PARI) for(n=0, 10827439, if(Set(Vec(Str(n)))==Set(Vec(Str(n^5))), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Arkadiusz Wesolowski, Nov 27 2013
STATUS
approved