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.

A208131 Partial products of A052901.

Original entry on oeis.org

1, 3, 6, 12, 36, 72, 144, 432, 864, 1728, 5184, 10368, 20736, 62208, 124416, 248832, 746496, 1492992, 2985984, 8957952, 17915904, 35831808, 107495424, 214990848, 429981696, 1289945088, 2579890176, 5159780352, 15479341056, 30958682112, 61917364224, 185752092672
Offset: 0

Views

Author

Reinhard Zumkeller, Apr 04 2012

Keywords

Crossrefs

Programs

  • Haskell
    a208131 n = a208131_list !! n
    a208131_list = scanl (*) 1 $ a052901_list
    -- Reinhard Zumkeller, Mar 29 2012
  • Mathematica
    FoldList[Times,1,PadRight[{},30,{3,2,2}]] (* Harvey P. Dale, Mar 19 2013 *)

Formula

a(n+1) = a(n) * A052901(n).
A001222(a(n)) = n.
a(n) = 12^floor(n/3)*(r+1)*(r+2)/2 with r = n mod 3. G.f.: -(6*x^2+3*x+1) / (12*x^3-1). - Alois P. Heinz, Apr 05 2012
Sum_{n>=0} 1/a(n) = 18/11. - Amiram Eldar, Feb 13 2023