login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A094589 a(1) = 1; a(n+1) = a(n) + (largest element of {a} <= n). 8

%I #18 Mar 30 2015 04:30:35

%S 1,2,4,6,10,14,20,26,32,38,48,58,68,78,92,106,120,134,148,162,182,202,

%T 222,242,262,282,308,334,360,386,412,438,470,502,534,566,598,630,668,

%U 706,744,782,820,858,896,934,972,1010,1058,1106,1154,1202,1250,1298

%N a(1) = 1; a(n+1) = a(n) + (largest element of {a} <= n).

%C a(n+1) = a(n) + a(k(n)), where k(n) is the number of elements of {a} which are <= n.

%H Michael De Vlieger, <a href="/A094589/b094589.txt">Table of n, a(n) for n = 1..10000</a>

%t f[n_] := Block[{t = Table[0, {n}]}, t[[1]] = 1; For[i = 1, i < n, i++, t[[i + 1]] = t[[i]] + t[[Count[t, x_ /; 0 < x <= i]]]]; t]; f@ 54 (* _Michael De Vlieger_, Mar 23 2015 *)

%o (PARI) flargest(va, n) = {vsa = vecsort(va,,12); for (k=1, #vsa, if (vsa[k] < n, return (vsa[k])););}

%o lista(nn) = {va = [1]; print1(va[1], ", "); for (n=2, nn, newa = flargest(va, n) + va[n-1]; print1(newa, ", "); va = concat(va, newa););} \\ _Michel Marcus_, Mar 23 2015

%Y Cf. A094590, A250983 (first differences).

%K nonn,easy

%O 1,2

%A _Leroy Quet_, Jun 07 2004

%E More terms from _Vladeta Jovovic_, Jun 13 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 12:48 EDT 2024. Contains 371942 sequences. (Running on oeis4.)