login

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”).

A035338
4th column of Wythoff array.
13
5, 18, 26, 39, 52, 60, 73, 81, 94, 107, 115, 128, 141, 149, 162, 170, 183, 196, 204, 217, 225, 238, 251, 259, 272, 285, 293, 306, 314, 327, 340, 348, 361, 374, 382, 395, 403, 416, 429, 437, 450, 458, 471, 484, 492, 505, 518, 526, 539, 547, 560, 573, 581, 594
OFFSET
0,1
LINKS
J. H. Conway and N. J. A. Sloane, Notes on the Para-Fibonacci and related sequences
Clark Kimberling, Complementary equations and Wythoff Sequences, JIS 11 (2008) 08.3.3
N. J. A. Sloane, Classic Sequences
MAPLE
t := (1+sqrt(5))/2 ; [ seq(5*floor((n+1)*t)+3*n, n=0..80) ];
MATHEMATICA
f[n_] := 5 Floor[(n + 1) GoldenRatio] + 3n; Array[f, 54, 0] (* Robert G. Wilson v, Dec 11 2017 *)
PROG
(Python)
from math import isqrt
def A035338(n): return 5*(n+1+isqrt(5*(n+1)**2)>>1)+3*n # Chai Wah Wu, Aug 11 2022
CROSSREFS
Let A = A000201, B = A001950. Then AA = A003622, AB = A003623, BA = A035336, BB = A101864. The eight triples AAA, AAB, ..., BBB are A134859, A134860, A035337, A134862, A134861, A134863, A035338, A134864, resp.
Sequence in context: A022142 A078648 A364607 * A055371 A034098 A034108
KEYWORD
nonn
STATUS
approved