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 31-32 of 32 results.

A250352 Number of length 3 arrays x(i), i=1..3 with x(i) in i..i+n and no value appearing more than 2 times.

Original entry on oeis.org

8, 26, 62, 122, 212, 338, 506, 722, 992, 1322, 1718, 2186, 2732, 3362, 4082, 4898, 5816, 6842, 7982, 9242, 10628, 12146, 13802, 15602, 17552, 19658, 21926, 24362, 26972, 29762, 32738, 35906, 39272, 42842, 46622, 50618, 54836, 59282, 63962, 68882, 74048
Offset: 1

Views

Author

R. H. Hardin, Nov 19 2014

Keywords

Comments

a(n) = (n+1)^3 - (n-1), where (n+1)^3 is the number of ways of selecting a triple from n+1 numbers in these subintervals, and there are n-1 of these triples, (3,3,3) up to (n-2,n-2,n-2), where all values are the same, which are discarded. - R. J. Mathar, Oct 09 2020

Examples

			Some solutions for n=6:
  2  0  1  2  6  4  0  1  0  0  2  4  6  2  4  0
  4  4  7  7  2  4  2  3  1  6  1  2  3  6  5  5
  6  4  7  2  4  7  8  5  3  6  4  7  5  8  8  2
		

Crossrefs

Row 3 of A250351.

Formula

a(n) = n^3 + 3*n^2 + 2*n + 2 = 2*A158842(n+1).
From Colin Barker, Nov 12 2018: (Start)
G.f.: 2*x*(4 - 3*x + 3*x^2 - x^3) / (1 - x)^4.
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>4.
(End)

A321010 Numbers k such that f(k^2) = k, where f is Eric Angelini's remove-repeated-digits map x->A320486(x).

Original entry on oeis.org

0, 1, 1465, 4376, 89476
Offset: 1

Views

Author

N. J. A. Sloane, Nov 03 2018

Keywords

Comments

Lars Blomberg has discovered that if we start with any positive integer and repeatedly apply the map m -> A320486(m^2) then we will eventually either:
- reach 0,
- reach one of the four fixed points 1, 1465, 4376, 89476 (this sequence),
- reach the period-10 cycle shown in A321011, or
- reach the period-9 cycle shown in A321012.
From Lars Blomberg, Nov 17 2018: (Start)
Verified by testing all possible 8877690 start values that these are the only fixed points and cycles.
Detailed counts are:
- 561354 reach 0,
- 963738 reach one of the four fixed points 1, 1465, 4376, 89476 (counts 946109, 434, 17065, 130),
- 7271337 reach the period-10 cycle, and
- 81261 reach the period-9 cycle. (End)

References

  • Eric Angelini, Postings to Sequence Fans Mailing List, Oct 24 2018 and Oct 26 2018.

Crossrefs

Previous Showing 31-32 of 32 results.