How random this numbers look,
21081461046286104621816
Here the system I used to get them, first pick the seed,
13128
then add the value of the 2nd number to the 1st and write it between them and the 3rd to 2nd and write it between them and etc.
143213218
and repeat again 2nd to 1st etc. to get more numbers.
15473523143523198
last step double each number 1>2 5>20 etc.
21081461046286104621816
Is it random or not because I want to use as a one time pad. so is it random even if you know how I generate them?
Your example is not at all random and is dangerous for the application you mention.
Perhaps you should look at the following methods of verifying the quality of random numbers. It is a difficult and very important topic in such things as simulations and cryptography.
Here are some of the test suites: PractRand, TestU01, RaBiGeTe, DIEHARD, DIEHARDER (search Google).
Additionally, you might want to read the TestU01 paper that describes the difficulties.
Lastly, you might want to have a look at:
http://en.wikipedia.org/wiki/Random_number_generation
http://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator
http://en.wikipedia.org/wiki/List_of_random_number_generators
http://reference.wolfram.com/mathematica/tutorial/RandomNumberGeneration.html
http://www.random.org/
http://photonics.anu.edu.au/qoptics/Research/qrng.php
Maybe if you could describe what you are looking for these for in more detail, we could provide more guidance (if it is a One-Time-Pad, you need a high entropy quality source and that is as hard as it gets).
Enjoy -A