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!)
A250445 a(n) = gcd(n!, Fibonacci(n)) as n runs through A250444. 1
2, 3, 5, 2, 5, 13, 2, 37, 2, 13, 2, 3, 5, 5, 2, 73, 13, 5, 2, 3, 2, 5, 13, 89, 2, 3, 2, 2, 89, 5, 5, 157, 2, 13, 3, 2, 2, 89, 3, 193, 2, 13, 5, 3, 2, 5, 13, 2, 5, 3, 3, 2, 89, 5, 2, 3, 277, 13, 3, 5, 233, 13, 2, 5, 2, 313, 89, 2, 2, 13, 3, 2, 89, 5, 5, 13, 233, 2, 2, 397, 233, 3, 2, 3, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
By the definition of A250444, all terms are prime.
LINKS
EXAMPLE
For n = 9, GCD(9!, Fibonacci(9)) = 2, (prime, thus belongs to the sequence).
MATHEMATICA
a[n_] := GCD[n!, Fibonacci[n]];
p[n_] := Which[PrimeQ[a[n]], a[n], PrimeQ[a[n]] == False, ];
Select[Table[p[n], {n, 1, 300}], IntegerQ[#] &]
PROG
(PARI) for(n=1, 10^3, if(isprime(p=gcd(n!, fibonacci(n))), print1(p, ", "))) \\ Derek Orr, Nov 23 2014
CROSSREFS
Sequence in context: A370590 A125766 A093870 * A297996 A239692 A126833
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Derek Orr, Nov 23 2014
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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)