login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062162 Boustrophedon transform of (-1)^n. 5
1, 0, 0, 1, 0, 5, 10, 61, 280, 1665, 10470, 73621, 561660, 4650425, 41441530, 395757181, 4031082640, 43626778785, 499925138190, 6046986040741, 76992601769220, 1029315335116745, 14416214547400450 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,6

COMMENTS

Inverse binomial transform of Euler numbers A000111. - Paul Barry, Jan 21 2005

LINKS

Table of n, a(n) for n=0..22.

Index entries for sequences related to boustrophedon transform

Peter Luschny, An old operation on sequences: the Seidel transform

FORMULA

E.g.f.: exp(-x)*(tan(x) + sec(x)). - Vladeta Jovovic, Feb 11 2003

PROG

(Sage) # Generalized algorithm of L. Seidel (1877)

def A062162_list(n) :

    R = []; A = {-1:0, 0:0}

    k = 0; e = 1

    for i in range(n) :

        Am = (-1)^i

        A[k + e] = 0

        e = -e

        for j in (0..i) :

            Am += A[k]

            A[k] = Am

            k += e

        R.append(A[e*i//2])

    return R

A062162_list(22) # Peter Luschny, June 02 2012

CROSSREFS

Cf. A000111 (binomial transform).

Cf. A000667.

Sequence in context: A005438 A072309 A061518 * A062848 A054884 A218540

Adjacent sequences:  A062159 A062160 A062161 * A062163 A062164 A062165

KEYWORD

nonn,easy,changed

AUTHOR

Frank Ellermann, Jun 10 2001

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 23 08:54 EDT 2013. Contains 225586 sequences.