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!)
A175404 Numbers n with property that n + Fibonacci(n) is prime. 2
1, 2, 3, 4, 8, 9, 28, 33, 38, 808, 1642, 13288, 20434, 29001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Next term > 49000. - Robert G. Wilson v, Jun 12 2010
LINKS
MATHEMATICA
fQ[n_] := PrimeQ[ Fibonacci@n + n]; lst = {}; k = 1; While[k < 50001, If[fQ@k, AppendTo[lst, k]; Print@k]; k++ ]; lst (* Robert G. Wilson v, Jun 12 2010 *)
Select[Range[2000], PrimeQ[#+Fibonacci[#]]&] (* The program generates the first 11 terms of the sequence. *) (* Harvey P. Dale, Mar 21 2024 *)
PROG
(PARI) isok(n) = isprime(n + fibonacci(n)); \\ Michel Marcus, Mar 30 2016
CROSSREFS
Cf. A000045 = Fibonacci(n), A069108 = Primes of the form n+Fibonacci(n).
Sequence in context: A026489 A126312 A126298 * A292113 A082224 A030478
KEYWORD
nonn,more
AUTHOR
Zak Seidov, May 01 2010
EXTENSIONS
a(12)-a(14) from Robert G. Wilson v, Jun 12 2010
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 16 07:57 EDT 2024. Contains 371698 sequences. (Running on oeis4.)