A232221 a(n) = Sum_{i=1..n} (A077068(i) - A077065(i)).
0, 0, 4, 20, 36, 52, 128, 216, 328, 464, 636, 796, 908, 1092, 1324, 1520, 1716, 1948, 2144, 2436, 2716, 2972, 3264, 3580, 3812, 4032, 4168, 4268, 4416, 4720, 5012, 5328, 5716, 6128, 6504, 6700, 6932, 7248, 7684, 8180, 8676, 9268, 9680, 10140, 10624, 11024, 11400
Offset: 1
References
- W. Feller, An Introduction to Probability Theory and its Applications, 3rd ed, Wiley, New York, 1968.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- OEIS "graph" command, Pin plot of 200 terms, scatter plot of 10000 terms
- Hans Havermann, Four graphs with an increasing number of terms, personal web page.
- Veikko Pohjola, Re: Sister sequences, SeqFan list, Nov 22 2013. (Early observation on how the sequence evolves.)
Programs
-
Haskell
a232221 n = a232221_list !! (n-1) a232221_list = scanl1 (+) a232342_list -- Reinhard Zumkeller, Dec 16 2013, Nov 22 2013
Comments