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!)
A160683 Numbers n >= 1 such that A000045(n)/A000005(A000045(n)) is an integer. 3
1, 2, 3, 6, 24, 48 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
No further term between 48 and 320. - R. J. Mathar, Apr 01 2011
This sequence is complete. For proof see the Luca-Young paper in links section, pages 7-10. - Altug Alkan, Apr 26 2016
LINKS
Florian Luca and Paul Thomas Young, On the number of divisors of n! and of the Fibonacci numbers, Glasnik Matematicki, Vol. 47, No. 2 (2012), 285-293. DOI: 10.3336/gm.47.2.05.
FORMULA
{n: A063375(n) | A000045(n)} . - R. J. Mathar, Apr 01 2011
MAPLE
with(combinat):with(numtheory): A160683 := proc(n) option remember: local k: if(n=1)then return 1:fi: for k from procname(n-1)+1 do if(fibonacci(k) mod tau(fibonacci(k))=0)then return k:fi: od: end: seq(A160683(n), n=1..6); # Nathaniel Johnston, May 09 2011
MATHEMATICA
Select[Range@ 120, IntegerQ[#/DivisorSigma[0, #]] &@ Fibonacci@ # &]
PROG
(PARI) isok(n) = my(f=fibonacci(n)); f % numdiv(f) == 0; \\ Michel Marcus, Jul 31 2015
CROSSREFS
Sequence in context: A329565 A295967 A027163 * A099000 A032540 A063728
KEYWORD
nonn,fini,full
AUTHOR
Ctibor O. Zizka, May 23 2009
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 13:56 EDT 2024. Contains 371958 sequences. (Running on oeis4.)