login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A272776
Numbers n such that phi(Fibonacci(n)) is a square.
0
1, 2, 3, 5, 6, 9, 22, 33
OFFSET
1,2
COMMENTS
Corresponding distinct Fibonacci numbers for listed terms are 1, 2, 5, 8, 34, 17711, 3524578.
a(9) > 1000 (range of the b-file in A065449), if it exists. - R. J. Mathar, May 08 2016
PROG
(PARI) lista(nn) = for(n=1, nn, if(issquare(eulerphi(fibonacci(n))), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Altug Alkan, May 06 2016
STATUS
approved