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.

A030529 Number of polyhexes of class PF2 with a particular symmetry.

Original entry on oeis.org

0, 0, 1, 4, 17, 66, 269, 1102, 4635, 19768, 85659, 375524, 1664015, 7438862, 33515027, 152016610, 693622315, 3181516040, 14661568795, 67850245684, 315187594779, 1469195413102, 6869889480447, 32215398047474, 151467333043437, 713881813137776, 3372142135461789
Offset: 2

Views

Author

Keywords

Comments

See references for precise definition.
Column D_{2h}(b) and Eq. 50 in Cyvin et al. (1994). - Sean A. Irvine, Mar 27 2021

Crossrefs

Programs

  • PARI
    A055879(n)= my(A); if( n<1, 0, n--; A = O(x); for( k = 0, n\2, A = 1 / (1 - x - x^2 / (1 + x - x^2 * A))); polcoeff( A, n));
    b(n) = (A055879(2*n+1) - A055879(2*n) - A055879(n)) / 2;
    a(n) = if( n<=2, 0, b(n - 2)); \\ Michel Marcus, Apr 03 2020

Formula

a(2)=0, a(n+2) = (M(2*n+1) - M(2*n) - M(n)) / 2 where M(n) = A055879(n) [Cyvin Eq. (54)]. - Sean A. Irvine, Apr 03 2020

Extensions

More terms from Sean A. Irvine, Apr 03 2020