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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A273053 Numbers n such that 15*n^2 + 16 is a square. 2
0, 4, 32, 252, 1984, 15620, 122976, 968188, 7622528, 60012036, 472473760, 3719778044, 29285750592, 230566226692, 1815244062944, 14291386276860, 112515846151936, 885835382938628, 6974167217357088, 54907502355918076, 432285851629987520, 3403379310683982084 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
O.g.f.: 4*x^2/(1 - 8*x + x^2).
E.g.f.: 4*(1 + (4*sqrt(15)*sinh(sqrt(15)*x) - 15*cosh(sqrt(15)*x))*exp(4*x)/15). - Ilya Gutkovskiy, May 14 2016
a(n) = 8*a(n-1) - a(n-2) for n>2.
a(n) = -(2*((4-sqrt(15))^n*(4+sqrt(15))+(-4+sqrt(15))*(4+sqrt(15))^n))/sqrt(15). - Colin Barker, May 14 2016
a(n+2) - a(n+1) = 4*070997(n) for n>0. - Wesley Ivan Hurt, May 14 2016
MAPLE
a:=proc(n) option remember; if n=1 then 0 elif n=2 then 4 else 8*a(n-1) - a(n-2); fi; end: seq(a(n), n=1..30); # Wesley Ivan Hurt, May 14 2016
MATHEMATICA
LinearRecurrence[{8, -1}, {0, 4}, 30]
PROG
(Magma) [n: n in [0..2*10^7] |IsSquare(15*n^2+16)];
(PARI) concat(0, Vec(4*x^2/(1-8*x+x^2) + O(x^50))) \\ Colin Barker, May 14 2016
CROSSREFS
Cf. A070997, similar sequences listed in A273052.
Sequence in context: A299649 A317520 A300203 * A303422 A301402 A303416
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 14 2016
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 December 11 02:45 EST 2023. Contains 367717 sequences. (Running on oeis4.)