A023492 Duplicate of A022801.
3, 8, 10, 15, 20, 28, 41, 60, 90, 138, 215, 339, 540, 863, 1385, 2229, 3594, 5802
Offset: 0
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.
L[1]:=1: L[2]:=3: for n from 3 to 10 do L[n]:=L[n-1]+L[n-2] od: A:={seq(L[n],n=1..10)}: B:={seq(n,n=0..L[10])}: C:=B minus A; # Emeric Deutsch, Dec 14 2004
Complement[Range[0,100],LucasL[Range[10]]] (* Harvey P. Dale, Mar 21 2012 *)
def A090946(n): if n == 1: return 0 def f(x): if x<=2: return n a, b, c = 1, 3, 0 while b<=x: a, b = b, a+b c += 1 return n+c m, k = n, f(n) while m != k: m, k = k, f(k) return m # Chai Wah Wu, Sep 10 2024