The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A286125 Numbers n such that antisigma(n) divides Fibonacci(n). 0
3, 4, 8, 672, 720, 3960, 25056, 114912, 323928, 1064880, 3899880, 16758000, 59222400 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(14) > 10^9. - Giovanni Resta, May 06 2017
LINKS
EXAMPLE
F(8) = 21, 8*9/2 - sigma(8) = 21 and 21/21 = 1.
MAPLE
with(numtheory): with(combinat): P:=proc(q) local n; for n from 1 to q do
if n*(n+1)/2-sigma(n)>0 then if type(fibonacci(n)/(n*(n+1)/2-sigma(n)), integer) then print(n); fi; fi; od; end: P(10^6);
MATHEMATICA
Select[Range[3, 150000], Divisible[Fibonacci@ #, # (# + 1)/2 - DivisorSigma[1, #]] &] (* or *)
Do[If[Divisible[Fibonacci@ #, # (# + 1)/2 - DivisorSigma[1, #]] &@ n, Print@ n], {n, 3, 150000}] (* Michael De Vlieger, May 03 2017, both after Robert G. Wilson v at A024816 *)
CROSSREFS
Sequence in context: A096847 A367131 A011993 * A180169 A154714 A001695
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, May 03 2017
EXTENSIONS
a(10)-a(12) from Robert G. Wilson v, May 06 2017
a(13) from Giovanni Resta, May 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 May 20 13:56 EDT 2024. Contains 372716 sequences. (Running on oeis4.)