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!)
A061792 a(n) = 49*(n*(n+1)/2) + 6. 1
6, 55, 153, 300, 496, 741, 1035, 1378, 1770, 2211, 2701, 3240, 3828, 4465, 5151, 5886, 6670, 7503, 8385, 9316, 10296, 11325, 12403, 13530, 14706, 15931, 17205, 18528, 19900, 21321, 22791, 24310, 25878, 27495, 29161, 30876, 32640, 34453 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
"If n is a triangular number, then so are 9n+1, 25n+3 and 49n+6. (Euler, 1775)." Burton, p. 17.
REFERENCES
D. M. Burton, Elementary Number Theory, Allyn and Bacon, Inc. Boston, MA, 1976, pp. 17.
LINKS
FORMULA
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3); a(0)=6, a(1)=55, a(2)=153. - Harvey P. Dale, Apr 11 2012
MATHEMATICA
49*Accumulate[Range[0, 40]]+6 (* or *) LinearRecurrence[{3, -3, 1}, {6, 55, 153}, 40] (* Harvey P. Dale, Apr 11 2012 *)
PROG
(PARI) v=[]; for(n=0, 100, v=concat(v, 49*(n*(n+1)/2)+6)); v
(PARI) for (n=0, 1000, write("b061792.txt", n, " ", 49*n*(n + 1)/2 + 6)) \\ Harry J. Smith, Jul 28 2009
CROSSREFS
Cf. A000217.
Sequence in context: A085067 A069508 A079465 * A066514 A281075 A009577
KEYWORD
easy,nonn,changed
AUTHOR
Jason Earls, Jun 22 2001
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 April 24 07:00 EDT 2024. Contains 371920 sequences. (Running on oeis4.)