login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A280592 Numbers n such that phi(n) is a Fibonacci number. 3
1, 2, 3, 4, 6, 15, 16, 20, 24, 30, 185, 219, 273, 285, 292, 296, 304, 315, 364, 370, 380, 432, 438, 444, 456, 468, 504, 540, 546, 570, 630, 3235, 5176, 6470, 7764, 46843, 47423, 47693, 48053, 50431, 52403, 56231, 57965, 59555, 62855, 67655, 67865, 70735, 72123, 72297, 73473 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Note that the sequence of corresponding Fibonacci numbers is not the same as A134492. See also A280681.
LINKS
EXAMPLE
24 is a term because phi(24) = 8 is a Fibonacci number.
MAPLE
fibs:= {seq(combinat:-fibonacci(n), n=1..30)}:
N:= combinat:-fibonacci(31):
sort(convert(select(t -> t <= N, map(t -> op(numtheory:-invphi(t)), fibs)), list)); # Robert Israel, Nov 20 2019
MATHEMATICA
Module[{fibs=Fibonacci[Range[30]]}, Select[Range[80000], MemberQ[ fibs, EulerPhi[ #]]&]] (* Harvey P. Dale, Jul 04 2021 *)
PROG
(PARI) isFibonacci(n)=my(k=n^2); issquare(k+=(k+1)<<2) || (n>0 && issquare(k-8));
is(n)=isFibonacci(eulerphi(n));
CROSSREFS
Sequence in context: A049911 A056712 A204540 * A330990 A337129 A002087
KEYWORD
nonn,look
AUTHOR
Altug Alkan, Jan 06 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)