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.

A167435 Hankel transform of A084076.

This page as a plain text file.
%I A167435 #10 Jun 18 2019 05:38:07
%S A167435 1,2,-16,-3584,-1114112,-771751936,-68719476736,50102545854496768,
%T A167435 4999067643975288487936,1104958199127771065681444864,
%U A167435 363815722265501838229553819942912
%N A167435 Hankel transform of A084076.
%H A167435 G. C. Greubel, <a href="/A167435/b167435.txt">Table of n, a(n) for n = 0..50</a>
%F A167435 a(n) = 2^(n^2)*(-1)^n*Sum_{k=0..n} C(n+k,2k)*(-2)^(n-k).
%F A167435 a(n) = 2^(n^2)*[x^n](1-2*x)/(1+3*x+4*x^2) = 2^(n^2) *A247560(n).
%t A167435 a[n_] := Sum[Binomial[n + k, 2*k]*(-2)^(n - k), {k, 0, n}]; Table[2^(n^2)*(-1)^n*a[n], {n, 0, 10}] (* _G. C. Greubel_, Jun 13 2016 *)
%K A167435 easy,sign
%O A167435 0,2
%A A167435 _Paul Barry_, Nov 03 2009