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!)
A254785 Zeroless numbers n with digits d_1, d_2, ... d_k such that F(d_1) + F(d_2) + ... + F(d_k) is a Fibonacci number where F(.) is A000045. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 21, 22, 23, 31, 32, 34, 43, 45, 54, 56, 65, 67, 76, 78, 87, 89, 98, 111, 112, 114, 121, 122, 124, 133, 135, 141, 142, 153, 211, 212, 214, 221, 222, 224, 233, 235, 241, 242, 253, 313, 315, 323, 325, 331, 332, 344, 346, 351, 352, 364, 411, 412, 421 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n is a member of this sequence, any reordering of its digits is also a member of this sequence. Since A000045(0) = 0, any number is the sequence can have an arbitrary number of zeros; hence, the numbers with zeros have been omitted as trivial.
LINKS
EXAMPLE
23 is a member of this sequence because F(2) + F(3) = 1+2 = 3 is a Fibonacci number.
PROG
(PARI) isfib(n)=for(k=0, 2*n, if(fibonacci(k)==n, return(1))); 0
for(n=1, 10^3, d=digits(n); if(vecsort(d, , 8)[1], s=0; for(i=1, #d, s+=fibonacci(d[i])); if(isfib(s), print1(n, ", ")))
CROSSREFS
Sequence in context: A257671 A285523 A126968 * A126969 A127274 A324280
KEYWORD
nonn,base,easy
AUTHOR
Derek Orr, Feb 07 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 September 9 15:40 EDT 2024. Contains 375765 sequences. (Running on oeis4.)