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!)
A112365 Least multiple of n such that every partial sum is a Fibonacci number. 2
1, 2, 18, 68, 55, 46224, 2131941, 163401832, 139418282304, 17028096315120, 2094317397800485, 12198048930043898688, 1488320375791774206539, 4855786456799950164906, 178195518800026250118150 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The idea derived from the fact that the sequence of natural numbers gives the least multiple of n such that every partial sum is a triangular number.
LINKS
EXAMPLE
1, 1+2 = 3, 1+2+18 = 21 are all Fibonacci numbers.
MAPLE
A112365 := proc(nmin) local a, psum, n, k, i ; a := [] ; psum := 0 ; for n from 1 to nmin do i := 1 ; while combinat[fibonacci](i)-psum <= 0 or (combinat[fibonacci](i)-psum) mod n <> 0 do i := i+1 ; od ; k := (combinat[fibonacci](i)-psum)/n ; a := [op(a), k*n] ; psum := psum+k*n ; od; RETURN(a) ; end: op(A112365(40)) ; # R. J. Mathar, Aug 24 2007
CROSSREFS
Cf. A112366.
Sequence in context: A078837 A232155 A368755 * A242200 A258929 A034959
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 09 2005
EXTENSIONS
More terms from R. J. Mathar, Aug 24 2007
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 19 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)