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!)
A022864 a(n) = [ a(n-1)/a(1) ] + [ a(n-2)/a(2) ] + ... + [ a(1)/a(n-1) ], for n >= 3. 2
1, 2, 2, 3, 5, 7, 10, 16, 25, 41, 65, 105, 169, 274, 443, 720, 1169, 1898, 3082, 5007, 8135, 13216, 21473, 34891, 56692, 92118, 149682, 243219, 395210, 642182, 1043490, 1695582, 2755177, 4476933, 7274641, 11820688, 19207633, 31210810 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ c * d^n, where d = 1.624917080308792668777176060024247061410853634382520938693643315503399..., c = 0.303891959005299690223882625168892655788121567053552039563488551080739... . - Vaclav Kotesovec, Jun 24 2016
MATHEMATICA
a[1] = 1; a[2] = 2; a[3] = 2;
a[n_] := a[n] = Floor[Sum[a[n - k]/a[k], {k, 1, n - 1}]];
Table[a[n], {n, 1, 100}]
(* Clark Kimberling, Jun 23 2016 *)
CROSSREFS
Cf. A022863.
Sequence in context: A001083 A173696 A120412 * A316075 A322429 A039894
KEYWORD
nonn
AUTHOR
STATUS
approved

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)