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 21-23 of 23 results.

A372946 Numbers k that divide the k-th NSW number.

Original entry on oeis.org

1, 7, 217, 3937, 6727, 6847, 51943, 170671, 330337, 385687, 2484247, 2566537, 2904007, 3020857, 3696967, 6465577, 9405337, 12021439, 19384207
Offset: 1

Views

Author

Amiram Eldar, May 17 2024

Keywords

Comments

Numbers k such that k | A002315(k).

Examples

			7 is a term since A002315(7) = 275807 = 7 * 39401 is divisible by 7.
		

Crossrefs

Similar sequences: A014847 (Catalan), A016089 (Lucas), A023172 (Fibonacci), A051177 (partition), A232570 (tribonacci), A246692 (Pell), A266969 (Motzkin).

Programs

  • Mathematica
    seq[kmax_] := Module[{nsw0 = 1, nsw1 = 7, nsw2, s = {1}}, Do[nsw2 = 6*nsw1 - nsw0; If[Divisible[nsw2, k], AppendTo[s, k]]; nsw0 = nsw1; nsw1 = nsw2, {k, 2, kmax}]; s]; seq[52000]
  • PARI
    lista(kmax) = {my(nsw0 = 1, nsw1 = 7, nsw2); print1("1, "); for(k = 2, kmax, nsw2 = 6*nsw1 - nsw0; if(!(nsw2 % k), print1(k, ", ")); nsw0 = nsw1; nsw1 = nsw2);}

A373055 Numbers k that divide the k-th term of the tribonacci sequence A000213.

Original entry on oeis.org

1, 3, 217, 13343, 549333, 1387663, 9356863, 22119541
Offset: 1

Views

Author

Amiram Eldar, May 21 2024

Keywords

Comments

Numbers k such that k | A000213(k).

Examples

			3 is a term since A000213(3) = 3 is divisible by 3.
		

Crossrefs

Cf. A000213.
Similar sequences: A014847 (Catalan), A016089 (Lucas), A023172 (Fibonacci), A051177 (partition), A232570 (tribonacci A000073), A246692 (Pell), A266969 (Motzkin).

Programs

  • Mathematica
    With[{m = 15000}, Position[LinearRecurrence[{1, 1, 1}, {1, 1, 3}, m]/Range[m], _?IntegerQ] // Flatten]
  • PARI
    lista(kmax) = {my(t0 = 1, t1 = 1, t2 = 1, t3); print1("1, "); for(k = 3, kmax, t3 = t0 + t1 + t2; if(!(t3 % k), print1(k, ", ")); t0 = t1; t1 = t2; t2 = t3);}

A373056 Numbers k that divide the k-th Ulam number.

Original entry on oeis.org

1, 2, 3, 4, 16, 52, 204, 255, 4259, 4262, 4265, 4855
Offset: 1

Views

Author

Amiram Eldar, May 21 2024

Keywords

Comments

Numbers k such that k | A002858(k).
a(13) >= 10^8, if it exists.
Based on empirical data its seems that the Ulam numbers have a positive asymptotic density and that A002858(k) ~ 13.5... * k (see A307331 and A346216). If this is true, then this sequence is finite, and it is likely that there are no more terms.

Examples

			16 is a term since A002858(16) = 48 = 3 * 16 is divisible by 16.
		

Crossrefs

Similar sequences: A014847 (Catalan), A016089 (Lucas), A023172 (Fibonacci), A051177 (partition), A232570 (tribonacci), A246692 (Pell), A266969 (Motzkin).

Programs

Previous Showing 21-23 of 23 results.