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!)
A084278 Squarefree numbers n which are the product of an even number of distinct primes such that Fibonacci(n) is also squarefree and the product of an even number of distinct primes. 1
1, 10, 14, 22, 26, 34, 55, 74, 77, 85, 87, 93, 94, 95, 115, 123, 129, 133, 143, 146, 155, 159, 161, 177, 178, 187, 194, 205, 206, 209, 214, 215, 217, 219, 221, 237, 249, 262, 265, 278, 287, 309, 314, 321, 323, 327, 334, 339, 341, 346, 355, 358, 362, 391 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The Pocklington-Lehmer "P-1"primality test, as implemented in PARI 2.1.3, was used separately for factors > 10^8 encountered in the computation.
LINKS
EXAMPLE
34 is in the sequence since Fibonacci(34) = 5702887, 34 = 2*17, 5702887 = 1597*3571; 55 is in the sequence since Fibonacci(55) = 139583862445, 55 = 5*11, 139583862445 = 5*89*661*474541.
MATHEMATICA
endpQ[n_]:=Module[{exp=FactorInteger[n][[All, 2]]}, EvenQ[ Length[ exp]] &&Max[exp]==1]; Join[{1}, Select[Range[400], AllTrue[{ #, Fibonacci[ #]}, endpQ]&]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jul 31 2020 *)
PROG
(PARI) {for(n=1, 391, if(moebius(n)==1&&moebius(fibonacci(n))==1, print1(n, ", ")))}
CROSSREFS
Sequence in context: A151740 A136802 A362866 * A286843 A069207 A168671
KEYWORD
easy,nonn
AUTHOR
Klaus Brockhaus, May 25 2003
EXTENSIONS
Added "squarefree" to definition. - N. J. A. Sloane, Jul 31 2020
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 19:39 EDT 2024. Contains 371963 sequences. (Running on oeis4.)