login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152777 7 times heptagonal numbers: 7*n*(5*n-3)/2. 2
0, 7, 49, 126, 238, 385, 567, 784, 1036, 1323, 1645, 2002, 2394, 2821, 3283, 3780, 4312, 4879, 5481, 6118, 6790, 7497, 8239, 9016, 9828, 10675, 11557, 12474, 13426, 14413, 15435, 16492, 17584, 18711, 19873, 21070, 22302, 23569 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
7 times 7-gonal numbers.
LINKS
FORMULA
a(n) = (35*n^2 - 21*n)/2 = A000566(n)*7.
a(n) = a(n-1)+35*n-28 (with a(0)=0). - Vincenzo Librandi, Dec 15 2010
MAPLE
A152777:=n->(35*n^2 - 21*n)/2; seq(A152777(n), n=0..100); # Wesley Ivan Hurt, Mar 04 2014
MATHEMATICA
s=0; lst={s}; Do[s+=n; AppendTo[lst, s], {n, 7, 8!, 35}]; lst (* Vladimir Joseph Stephan Orlovsky, Apr 03 2009 *)
PROG
(Magma) [ 7*n*(5*n-3)/2 : n in [0..50] ]; // Wesley Ivan Hurt, Jun 09 2014
(PARI) a(n)=7*n*(5*n-3)/2 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
Cf. A000566.
Sequence in context: A043131 A082701 A044145 * A003530 A262269 A163827
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Dec 13 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 02:48 EDT 2024. Contains 372300 sequences. (Running on oeis4.)