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!)
A065035 a(n+1) = a(n)^2 + 3*a(n) + 1. 1
0, 1, 5, 41, 1805, 3263441, 10650056950805, 113423713055421844361000441, 12864938683278671740537145998360961546653259485195805, 165506647324519964198468195444439180017513152706377497841851388766535868639572406808911988131737645185441 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(k) is the optimal competitive ratio of any memoryless algorithm for the weighted k-server problem (Chiplunkar and Vishwanathan). - David Eppstein, Dec 31 2013
This is a divisibility sequence, that is if n divides m then a(n) divides a(m). Cf. A002065. - Peter Bala, Mar 26 2018
LINKS
Ashish Chiplunkar and Sundar Vishwanathan, On Randomized Memoryless Algorithms for the Weighted k-server Problem, 54th IEEE Symp. Foundations of Computer Science (FOCS 2013), pp. 11-19; arXiv:1301.0123
FORMULA
a(n) = A007018(n)-1 = A000058(n)-2 = A060136(3, n) = A028387(a(n-1)). - Michael Somos, Feb 10 2002
EXAMPLE
a(3) = a(2)^2 + 3*a(2) + 1 = 25 + 15 + 1 = 41.
PROG
(PARI) a(n)=if(n<1, 0, a(n-1)^2+3*a(n-1)+1);
(PARI) { for (n=0, 12, a=if(n, a^2 + 3*a + 1, 0); write("b065035.txt", n, " ", a) ) } \\ Harry J. Smith, Oct 03 2009
CROSSREFS
Sequence in context: A197173 A052113 A318294 * A340535 A145008 A216610
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Nov 03 2001
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 24 06:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)