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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154030 List of pairs of numbers:{2*(n^2 - 1), (2*n)!/n!} such that F((2*n)!/n!)=2*(n^2 - 1). 0
0, 2, 6, 12, 16, 120, 30, 1680, 48, 30240, 70, 665280, 96, 17297280, 126, 518918400, 160, 17643225600, 198, 670442572800, 240, 28158588057600, 286, 1295295050649600, 336, 64764752532480000, 390, 3497296636753920000, 448 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

If you have two recursions ( addition and multiplication):

a(0)=-1;a(n)=2*(2*n-1)+a(n-1);a(n)=2*(n^2-1);

and

b(0)=1;b(n)=2*(2*n-1)*a(n-1):a(n)=(2*n)!/n!;

then you can form a function F such that:

F((2*n)!/n!)=2*(n^2 - 1).

This line of thought came from the row sum sequence in Pascal-like

triangular sequence:

{2^n,n!,2^n*n!,(2*n-1)!!,(2*n)!/n!,...}.

These field transforms are a way to get a functionally reduced

form of a very large number one for one.

FORMULA

{2*(n^2 - 1), (2*n)!/n!}

MATHEMATICA

Clear[a, b, n];

Flatten[Table[{2*(n^2 - 1), (2*n)!/n!}, {n, 1, 20}]]

(*addition*)

a[0] = -2; a[n_] := a[n] = 2*(2*n - 1) + a[n - 1];

Table[a[n] - 2*(n^2 - 1), {n, 0, 20}]

(*multiplication*)

b[0] = 1; b[n_] := b[n] = 2*(2*n - 1)*b[n - 1];

Table[b[n] - (2*n)!/n!, {n, 0, 20}]

CROSSREFS

Sequence in context: A084790 A130237 A053457 * A055560 A108727 A138630

Adjacent sequences:  A154027 A154028 A154029 * A154031 A154032 A154033

KEYWORD

nonn,tabf

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Jan 04 2009

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 February 15 05:45 EST 2012. Contains 205694 sequences.