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!)
A259407 Fibonacci numbers corresponding to the indices mentioned in A214852. 1
2, 14930352, 267914296, 956722026041, 781774079430987230203437, 178890334785183168257455287891792, 57602132235424755886206198685365216, 55835073295300465536628086585786672357234389, 15156039800290547036315704478931467953361427680642 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The data correspond to the 3rd, 36th, 42nd, 59th, 116th, 156th, 168th, 211th, 237th Fibonacci numbers.
Intersection of A000045 and A031443. - Michel Marcus, Jul 31 2015
LINKS
FORMULA
a(n) = A000045(A214852(n)).
EXAMPLE
a(2) = F(36) = 14930352 = 111000111101000110110000_2 has an equal number of 0's and 1's.
PROG
(Python)
f1=1; f2=1
while f1>0:
....f3=f1+f2
....c = bin(f3).split('b')[1]
....if c.count("1")==c.count("0"):
........print(f3)
....f1=f2; f2=f3
CROSSREFS
Sequence in context: A121390 A170997 A326615 * A157992 A322145 A301810
KEYWORD
nonn,easy,base
AUTHOR
Abhiram R Devesh, Jun 26 2015
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 March 28 04:13 EDT 2024. Contains 371235 sequences. (Running on oeis4.)