A283233 2*A000201.
2, 6, 8, 12, 16, 18, 22, 24, 28, 32, 34, 38, 42, 44, 48, 50, 54, 58, 60, 64, 66, 70, 74, 76, 80, 84, 86, 90, 92, 96, 100, 102, 106, 110, 112, 116, 118, 122, 126, 128, 132, 134, 138, 142, 144, 148, 152, 154, 158, 160, 164, 168, 170, 174, 176, 180, 184, 186
Offset: 1
Links
- Clark Kimberling, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
r = 1; s = (-1 + 5^(1/2))/2; t = (1 + 5^(1/2))/2; a[n_] := n + Floor[n*s/r] + Floor[n*t/r]; b[n_] := n + Floor[n*r/s] + Floor[n*t/s]; c[n_] := n + Floor[n*r/t] + Floor[n*s/t] Table[a[n], {n, 1, 120}] (* A283233 *) Table[b[n], {n, 1, 120}] (* A283234 *) Table[c[n], {n, 1, 120}] (* A005408 *)
-
Python
from math import isqrt def A283233(n): return (n+isqrt(5*n**2))&-2 # Chai Wah Wu, Aug 10 2022
Formula
a(n) = 2*floor(n*r), where r = (1+sqrt(5))/2.
Comments