cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A059390 Numbers that are not the sum of two nonzero Fibonacci numbers.

This page as a plain text file.
%I A059390 #12 Jun 18 2013 15:16:30
%S A059390 1,12,17,19,20,25,27,28,30,31,32,33,38,40,41,43,44,45,46,48,49,50,51,
%T A059390 52,53,54,59,61,62,64,65,66,67,69,70,71,72,73,74,75,77,78,79,80,81,82,
%U A059390 83,84,85,86,87,88,93,95,96,98,99,100,101,103,104,105,106,107,108,109
%N A059390 Numbers that are not the sum of two nonzero Fibonacci numbers.
%C A059390 Except for the initial 1, each term can be expressed as the sum of a Fibonacci number and a non-Fibonacci number (A001690) and is thus the sum of three or more Fibonacci numbers. - _Alonso del Arte_, Jun 18 2013
%C A059390 That is, aside from the first term, numbers n such that A007895(n) > 2. - _Charles R Greathouse IV_, Jun 18 2013
%H A059390 Charles R Greathouse IV, <a href="/A059390/b059390.txt">Table of n, a(n) for n = 1..10000</a>
%t A059390 Complement[ Range[ Fibonacci[ 12 ]], Union[ Flatten[ Table[ Fibonacci[i] + Fibonacci[j], {i, 12}, {j, i - 1}]]]] (* _Robert G. Wilson v_, Jul 22 2005 *)
%o A059390 (PARI) is(n)=if(n<9,return(n==1)); my(k);while(fibonacci(k++)<=n,); n-=fibonacci(k-1); k=n^2; k+=(k+1)<<2; !issquare(k) && !issquare(k-8) \\ _Charles R Greathouse IV_, Jun 18 2013
%Y A059390 Complement of A059389.
%K A059390 nonn,easy
%O A059390 1,2
%A A059390 Avi Peretz (njk(AT)netvision.net.il), Jan 29 2001
%E A059390 More terms from Larry Reeves (larryr(AT)acm.org), Jan 31 2001