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.

A020528 3rd Bernoulli polynomial evaluated at powers of 2 (multiplied by 6).

Original entry on oeis.org

0, 18, 252, 2520, 22320, 187488, 1536192, 12435840, 100074240, 802948608, 6433016832, 51501864960, 412165877760, 3297930928128, 26385863196672, 211096568954880, 1688811205754880, 13510644263682048
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    seq(6*bernoulli(3,2^i),i=0..24);
  • Mathematica
    6*BernoulliB[3, 2^Range[0, 30]] (* Paolo Xausa, Sep 16 2024 *)

Formula

a(n) = 3*2^(n+1)*(2^(n+1)-1)*(2^(n+1)-2)/4. - Ralf Stephan, Apr 06 2004
From R. J. Mathar, May 22 2013: (Start)
a(n) = 18*A016290(n-1).
G.f.: -18*x/((8*x-1)*(2*x-1)*(4*x-1)). (End)
a(n) = 14*a(n-1) - 56*a(n-2) + 64*a(n-3). - Wesley Ivan Hurt, Mar 02 2023