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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A124437 Experience Points thresholds for levels in the P&P-RPG "Das Schwarze Auge" (DSA, aka "The Dark Eye"). 0
0, 100, 300, 600, 1000, 1500, 2100, 2800, 3600, 4500, 5500, 6600, 7800, 9100, 10500, 12000, 13600, 15300, 17100, 19000, 21000, 23100, 25300, 27600, 30000, 32500, 35100, 37800, 40600, 43500, 46500, 49600, 52800, 56100, 59500, 63000, 66600 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

REFERENCES

"Das Schwarze Auge - Basisregelwerk" (basic rule book), Fantasy Productions Verlags- und Medienvertriebsgesellschaft mbH, Erkrath, Germany, 2005, ISBN 3890644406

FORMULA

a(1)=0; a(n)=a(n-1)+(n-1)*100;

EXAMPLE

a(7)=2100 because a(6)+(7-1)*100=(a(5)+500)+600=(((((0+100)+200)+300)+400)+500)+600

PROG

int folge(n){ if (n==1) return 0; return (folge(n-1)+(n-1)*100); }

CROSSREFS

Sequence in context: A116145 A104908 A109633 * A138668 A017174 A202334

Adjacent sequences:  A124434 A124435 A124436 * A124438 A124439 A124440

KEYWORD

easy,nonn

AUTHOR

Christoph D. Schmidt (snu(AT)power.ms), Dec 16 2006, Dec 21 2006

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 08:13 EST 2012. Contains 205893 sequences.