cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A066999 a(n) = 3^n * Sum_{i=1..n} i^3/3^i.

This page as a plain text file.
%I A066999 #19 Dec 20 2015 09:23:56
%S A066999 1,11,60,244,857,2787,8704,26624,80601,242803,729740,2190948,6575041,
%T A066999 19727867,59186976,177565024,532699985,1598105787,4794324220,
%U A066999 14382980660,43148951241,129446864371,388340605280,1165021829664
%N A066999 a(n) = 3^n * Sum_{i=1..n} i^3/3^i.
%H A066999 Harry J. Smith, <a href="/A066999/b066999.txt">Table of n, a(n) for n = 1..200</a>
%F A066999 Conjecture: g.f.:(-1-x^2-4*x)/((3*x-1)*(x-1)^4). - Maksym Voznyy (voznyy(AT)mail.ru), Jul 27 2009
%F A066999 a(n) = (11*3^(n+1) - 4*n^3 - 18*n^2 - 36*n - 33)/8. - _Vaclav Kotesovec_, Nov 28 2012
%F A066999 From _Peter Bala_, Nov 29 2012: (Start)
%F A066999 Recurrence equation: a(n) = 3*a(n-1) + n^3.
%F A066999 O.g.f.: x*(1 + 4*x + x^2)/((1 - 3*x)*(1 - x)^4) = x + 11*x^2 + 244*x^3 + .... See A047520 and A067534. (End)
%t A066999 f[n_] := 3^n*Sum[i^3/3^i, {i, n}]; Array[f, 24] (* _Robert G. Wilson v_, Nov 28 2012 *)
%o A066999 (PARI) { s=0; for (n=1, 200, s+=n^3/3^n; write("b066999.txt", n, " ", 3^n*s) ) } \\ _Harry J. Smith_, Apr 25 2010
%Y A066999 Cf. A008292, A047520, A067534.
%K A066999 nonn,easy
%O A066999 1,2
%A A066999 _Benoit Cloitre_, Jan 27 2002