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!)
A130312 Each Fibonacci number F(n) appears F(n) times. 8
1, 1, 2, 2, 3, 3, 3, 5, 5, 5, 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Also n-1-s(n-1), where s(n) is the length of the longest proper suffix of p, the length-n prefix of the infinite Fibonacci word (A003849), that appears twice in p. - Jeffrey Shallit, Mar 20 2017
a(n+1) = the least period of the length-n prefix of the infinite Fibonacci word (A003849). A period of a length-n word x is an integer p, 1 <= p <= n such that x[i] = x[i+p] for 1 <= i <= n-p. - Jeffrey Shallit, May 23 2020
LINKS
FORMULA
a(n) = A000045(A072649(n)). - Michel Marcus, Aug 03 2022
MATHEMATICA
Flatten[Table[#, {#}]&/@Fibonacci[Range[10]]] (* Harvey P. Dale, Apr 18 2012 *)
PROG
(Python)
from itertools import islice
def A130312_gen(): # generator of terms
a, b = 1, 1
while True:
yield from (a, )*a
a, b = b, a+b
A130312_list = list(islice(A130312_gen(), 20)) # Chai Wah Wu, Oct 13 2022
(PARI) a(n) = my(m=0); until(fibonacci(m)>n, m++); fibonacci(m-2); \\ Michel Marcus, Nov 26 2022
CROSSREFS
Sequence in context: A165079 A175944 A063905 * A295629 A076272 A180101
KEYWORD
nonn,easy
AUTHOR
Edwin F. Sampang, May 21 2007
EXTENSIONS
More terms from Harvey P. Dale, Apr 18 2012
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.)