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.

A160567 a(n)=4*(a(n-1)a(n-3)-a(n-2)^2)/a(n-4), a(1)=a(2)=a(3)=1, a(4)=-4.

Original entry on oeis.org

1, 1, 1, -4, -20, -144, 704, 34816, 1101824, 12124160, -4499439616, -586464362496, -99309307559936, 33947352788107264, 26466630265219317760, 25787111566764821970944, -7045529183328701486465024
Offset: 0

Views

Author

Paul Barry, May 19 2009

Keywords

Comments

a(n+1) is the Hankel transform of A160565.

Crossrefs

Cf. A050512.

Programs

  • Maple
    A160567 := proc(n)
        option remember;
        if n < 5 then
            op(n,[1,1,1,-4]);
        else
            4*(procname(n-1)*procname(n-3)-procname(n-2)^2)/procname(n-4) ;
        end if;
    end proc: # R. J. Mathar, Feb 25 2015