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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154028 List of pairs of numbers:{n*(n+1)/2,n!} such that F(n!)=n*(n+1)/2. 0
0, 1, 1, 1, 3, 2, 6, 6, 10, 24, 15, 120, 21, 720, 28, 5040, 36, 40320, 45, 362880, 55, 3628800, 66, 39916800, 78, 479001600, 91, 6227020800, 105, 87178291200, 120, 1307674368000, 136, 20922789888000, 153, 355687428096000, 171 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

If you have two recursions ( addition and multiplication):

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

and

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

then you can form a function F such that:

F(n!)=n*(n+1)/2.

FORMULA

{n*(n+1)/2,n!}

MATHEMATICA

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

(*addition*)

a[0] = 0; a[n_] := a[n] = n + a[n - 1];

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

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

Table[b[n] - n!, {n, 0, 20}]

CROSSREFS

Sequence in context: A064684 A098071 A023360 * A157793 A096375 A062200

Adjacent sequences:  A154025 A154026 A154027 * A154029 A154030 A154031

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 16 02:51 EST 2012. Contains 205860 sequences.