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.

Showing 1-2 of 2 results.

A242329 a(n) = 5^n + 4.

Original entry on oeis.org

5, 9, 29, 129, 629, 3129, 15629, 78129, 390629, 1953129, 9765629, 48828129, 244140629, 1220703129, 6103515629, 30517578129, 152587890629, 762939453129, 3814697265629, 19073486328129, 95367431640629, 476837158203129, 2384185791015629, 11920928955078129
Offset: 0

Views

Author

Vincenzo Librandi, May 13 2014

Keywords

Comments

Subsequence of A226810. - Bruno Berselli, May 13 2014

Crossrefs

Cf. A000351, A003463, A034474, A132079, A178676, A226810, A242328, A253208 (similar sequence).

Programs

  • Magma
    [5^n+4: n in [0..30]];
  • Mathematica
    Table[5^n + 4, {n, 0, 30}]
    LinearRecurrence[{6,-5},{5,9},30] (* Harvey P. Dale, Mar 15 2025 *)

Formula

G.f.: (5-21*x)/((1-x)*(1-5*x)).
a(n) = 6*a(n-1) - 5*a(n-2) for n > 1.
From Elmo R. Oliveira, Dec 06 2023: (Start)
a(n) = A000351(n)+4 = A034474(n)+3 = A242328(n)+2.
a(n) = 5*a(n-1) - 16 with a(0) = 5.
E.g.f.: exp(5*x) + 4*exp(x). (End)

A362743 Positive integers which cannot be written as a sum of distinct numbers of the form 4^a + 5^b (a,b >= 0).

Original entry on oeis.org

1, 3, 4, 10, 12, 18
Offset: 1

Views

Author

Zhi-Wei Sun, May 01 2023

Keywords

Comments

If a(7) exists, it will be greater than 2750.
Conjecture 1: The only terms of the current sequence are 1, 3, 4, 10, 12, 18. Moreover, any positive integer not among 1, 3, 4, 8, 10, 12, 13, 18, 25, 39, 42 can be written as a sum of numbers of the form 4^a + 5^b (a,b>=0) with no one summand dividing another.
Conjecture 2: Let k and m be positive integers greater than one with k*m even. Then, any sufficiently large integer n can be written as a sum of distinct numbers of the form k^a + m^b with a and b nonnegative integers.
Conjecture 3: Let k and m be positive integers greater than one with k*m even. Then, any sufficiently large integer n can be written as a sum of numbers of the form k^a + m^b (a,b >= 0) with no summand dividing another.
Clearly, Conjecture 3 is stronger than Conjecture 2.
See also A362861 for similar conjectures.
a(7) > 50000. - Martin Ehrenstein, May 16 2023

Examples

			a(1) = 1 since 4^a + 5^b > 1 for all a,b >= 0.
a(2) = 3 since 2 = 4^0 + 5^0, and 3 cannot be written as a sum of distinct numbers of the form 4^a + 5^b with a,b >= 0.
		

Crossrefs

Showing 1-2 of 2 results.