|
| |
|
|
A060822
|
|
a(n) = p(n) + n^2 + n^3 + (2*n-1) + (2*n) where p(n) is n-th prime.
|
|
1
| |
|
|
7, 22, 52, 102, 180, 288, 436, 626, 868, 1168, 1526, 1956, 2458, 3038, 3706, 4468, 5328, 6288, 7362, 8550, 9858, 11298, 12870, 14584, 16446, 18456, 20622, 22954, 25454, 28132, 31002, 34050, 37294, 40734, 44388, 48246, 52326, 56630, 61162
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
REFERENCES
| Marilyn vos Savant and Leonore Fleischer, Brain Building in Just 12 Weeks, Bantam Books, New York, NY, 1991, pp. 104-105, 119.
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,1000
|
|
|
EXAMPLE
| a(2)=22 because 3 + 2^2 + 2^3 + 3 + 4 = 22.
|
|
|
PROG
| (PARI) { n=0; forprime (p=2, prime(1000), write("b060822.txt", n++, " ", p + n^2 + n^3 + (2*n - 1) + (2*n)); ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 12 2009]
|
|
|
CROSSREFS
| Sequence in context: A002412 A184629 A041215 * A011926 A101120 A151717
Adjacent sequences: A060819 A060820 A060821 * A060823 A060824 A060825
|
|
|
KEYWORD
| easy,nonn,dumb
|
|
|
AUTHOR
| Jason Earls (zevi_35711(AT)yahoo.com), May 05 2001
|
|
|
EXTENSIONS
| More terms from Larry Reeves (larryr(AT)acm.org), May 07 2001
|
| |
|
|