login

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 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A373056
Numbers k that divide the k-th Ulam number.
0
1, 2, 3, 4, 16, 52, 204, 255, 4259, 4262, 4265, 4855
OFFSET
1,2
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.
EXAMPLE
16 is a term since A002858(16) = 48 = 3 * 16 is divisible by 16.
MATHEMATICA
ulams = {1, 2}; Do[AppendTo[ulams, n = Last[ulams]; While[n++; Length[DeleteCases[ Intersection[ulams, n - ulams], n/2, 1, 1]] != 2]; n], {5000}];
Position[ulams/Range[Length[ulams]], _?IntegerQ] // Flatten (* after Jean-François Alcover at A002858 *)
CROSSREFS
Similar sequences: A014847 (Catalan), A016089 (Lucas), A023172 (Fibonacci), A051177 (partition), A232570 (tribonacci), A246692 (Pell), A266969 (Motzkin).
Sequence in context: A283515 A333802 A229546 * A365574 A343494 A300855
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 21 2024
STATUS
approved