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!)
A154148 Numbers k such that 21 plus the k-th triangular number is a perfect square. 3
5, 7, 40, 50, 237, 295, 1384, 1722, 8069, 10039, 47032, 58514, 274125, 341047, 1597720, 1987770, 9312197, 11585575, 54275464, 67525682 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
F. T. Adams-Watters, SeqFan Discussion, Oct 2009
FORMULA
{k: 21+k*(k+1)/2 in A000290}
Conjectures: (Start)
a(n)= +a(n-1) +6*a(n-2) -6*a(n-3) -a(n-4) +a(n-5).
G.f.: x*(-5-2*x-3*x^2+2*x^3+6*x^4)/((x-1) * (x^2-2*x-1) * (x^2+2*x-1)).
G.f.: ( 12 + (12+25*x)/(x^2-2*x-1) + 1/(x-1) + (-1-10*x)/(x^2+2*x-1) )/2. (End)
EXAMPLE
5, 7, 40, and 50 are terms:
5* (5+1)/2 + 21 = 6^2,
7* (7+1)/2 + 21 = 7^2,
40*(40+1)/2 + 21 = 29^2,
50*(50+1)/2 + 21 = 36^2.
MATHEMATICA
Select[Range[68*10^6], IntegerQ[Sqrt[21+(#(#+1))/2]]&] (* Harvey P. Dale, Mar 07 2017 *)
PROG
(PARI) {for (n=0, 10^9, if ( issquare(n*(n+1)\2 + 21), print1(n, ", ") ) ); }
CROSSREFS
Sequence in context: A244260 A178428 A147760 * A340818 A242241 A257745
KEYWORD
nonn,less
AUTHOR
R. J. Mathar, Oct 18 2009
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 25 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)