Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A154028
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A154028 List of pairs of numbers:{n*(n+1)/2,n!} such that F(n!)=n*(n+1)/2. +0
1
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; listen)
OFFSET

0,5

COMMENT

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: A060408 A098071 A023360 this_sequence A157793 A096375 A062200

Adjacent sequences: A154025 A154026 A154027 this_sequence A154029 A154030 A154031

KEYWORD

nonn,tabf

AUTHOR

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

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified November 25 20:09 EST 2009. Contains 167514 sequences.


AT&T Labs Research