Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #11 Mar 13 2022 19:11:06
%S 4,9,10,11,16,21,22,23,24,25,26,27,28,33,38,39,40,45,50,51,52,53,54,
%T 55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,74,79,80,81,86,91,92,93,
%U 94,95,96,97,98,103,108,109,110,115,120,121,122,123,124,125,126
%N Positive numbers that are not the sum of distinct Pell numbers (A000129).
%H Amiram Eldar, <a href="/A352323/b352323.txt">Table of n, a(n) for n = 1..10000</a>
%H L. Carlitz, Richard Scoville, and V. E. Hoggatt, Jr., <a href="https://www.fq.math.ca/Scanned/10-5/carlitz1.pdf">Pellian Representations</a>, The Fibonacci Quarterly, Vol. 10, No. 5 (1972), pp. 449-488.
%t pell = LinearRecurrence[{2, 1}, {1, 2}, 7]; Complement[Range[pell[[-1]]], Select[Union[Plus @@@ Subsets[pell]], 0 < # <= pell[[-1]] &]]
%Y Cf. A000129.
%K nonn
%O 1,1
%A _Amiram Eldar_, Mar 12 2022