cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Previous Showing 11-12 of 12 results.

A273052 Numbers n such that 7*n^2 + 8 is a square.

Original entry on oeis.org

2, 34, 542, 8638, 137666, 2194018, 34966622, 557271934, 8881384322, 141544877218, 2255836651166, 35951841541438, 572973628011842, 9131626206648034, 145533045678356702, 2319397104647059198, 36964820628674590466, 589117732954146388258, 9388918906637667621662
Offset: 1

Views

Author

Vincenzo Librandi, May 14 2016

Keywords

Crossrefs

Cf. Numbers n such that k*n^2+(k+1) is a square: A052530 (k=3), this sequence (k=7), A106328 (k=8), A106256 (k=12), A273053 (k=15), A273054 (k=19), A106331 (k=24).

Programs

  • Magma
    I:=[2,34]; [n le 2 select I[n] else 16*Self(n-1)-Self(n-2): n in [1..30]];
    
  • Mathematica
    LinearRecurrence[{16, -1}, {2, 34}, 30]
  • PARI
    Vec(x*(2+2*x)/(1-16*x+x^2) + O(x^50)) \\ Colin Barker, May 14 2016

Formula

O.g.f.: x*(2 + 2*x)/(1 - 16*x + x^2).
E.g.f.: 2*(1 + (3*sqrt(7)*sinh(3*sqrt(7)*x) - 7*cosh(3*sqrt(7)*x))*exp(8*x)/7). - Ilya Gutkovskiy, May 14 2016
a(n) = 16*a(n-1) - a(n-2).
a(n) = (-(8-3*sqrt(7))^n*(3+sqrt(7))-(-3+sqrt(7))*(8+3*sqrt(7))^n)/sqrt(7). - Colin Barker, May 14 2016

A358682 Numbers k such that 8*k^2 + 8*k - 7 is a square.

Original entry on oeis.org

1, 7, 43, 253, 1477, 8611, 50191, 292537, 1705033, 9937663, 57920947, 337588021, 1967607181, 11468055067, 66840723223, 389576284273, 2270616982417, 13234125610231, 77134136678971, 449570694463597, 2620290030102613, 15272169486152083, 89012726886809887, 518804191834707241
Offset: 1

Views

Author

Stefano Spezia, Nov 26 2022

Keywords

Comments

a(n) is the n-th almost cobalancing number of second type (see Tekcan and Erdem).

Examples

			a(2) = 7 is a term since 8*7^2 + 8*7 - 7 = 441 = 21^2.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{7,-7,1},{1,7,43},24]

Formula

a(n) = 7*a(n-1) - 7*a(n-2) + a(n-3) for n > 3.
a(n) = (3*(3 - 2*sqrt(2))^n*(2 + sqrt(2)) + 3*(2 - sqrt(2))*(3 + 2*sqrt(2))^n - 4)/8.
O.g.f.: x*(1 + x^2)/((1 - x)*(1 - 6*x + x^2)).
E.g.f.: (3*(2 + sqrt(2))*(cosh(3*x - 2*sqrt(2)*x) + sinh(3*x - 2*sqrt(2)*x)) + 3*(2 - sqrt(2))*(cosh(3*x + 2*sqrt(2)*x) + sinh(3*x + 2*sqrt(2)*x)) - 4*(cosh(x) + sinh(x)) - 8)/8.
a(n) = 3*A011900(n) - 2 = 6*A053142(n) + 1. - Hugo Pfoertner, Nov 26 2022
Previous Showing 11-12 of 12 results.