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.

A080900 a(1)=1; for n>1, a(n)=a(n-1)-2 if n is already in the sequence, a(n)=a(n-1)+5 otherwise.

Original entry on oeis.org

1, 6, 11, 16, 21, 19, 24, 29, 34, 39, 37, 42, 47, 52, 57, 55, 60, 65, 63, 68, 66, 71, 76, 74, 79, 84, 89, 94, 92, 97, 102, 107, 112, 110, 115, 120, 118, 123, 121, 126, 131, 129, 134, 139, 144, 149, 147, 152, 157, 162, 167, 165, 170, 175, 173, 178, 176
Offset: 1

Views

Author

N. J. A. Sloane and Benoit Cloitre, Apr 01 2003

Keywords

Crossrefs

Cf. A080901 (starting value = 2), A080905 (run lengths of first differences).

Programs

  • Mathematica
    Fold[Append[#1, #1[[-1]] + If[MemberQ[#1, #2], -2, 5]] &, {1}, Range[2, 57]] (* Ivan Neretin, Mar 03 2016 *)
  • PARI
    up_to = 1001;
    A080900list(up_to_n) = { my(xs=Map(), v=vector(up_to_n)); mapput(xs,1,1); v[1] = 1; for(n=2,up_to_n, v[n] = v[n-1]+if(mapisdefined(xs,n), -2, +5); mapput(xs,v[n],n)); (v); };
    v080900 = A080900list(up_to);
    A080900(n) = v080900[n]; \\ Antti Karttunen, Jan 22 2020

Formula

Perhaps this is asymptotic to c_0*n*(1 + c_1/log n + ...), with c_0 near 2 ?

A080912 a(n) = first number that appears n times in A080900.

Original entry on oeis.org

1, 523, 1277, 1277, 12694, 12694, 12692, 24154439, 186075352, 186074886
Offset: 1

Views

Author

N. J. A. Sloane, Apr 02 2003

Keywords

Comments

Next term > 10^7. - Lambert Klasen (Lambert.Klasen(AT)gmx.net), Sep 26 2005
Next term > 26000000. - Lambert Herrgesell (zero815(AT)googlemail.com), Mar 09 2007
a(11) > 12*10^8. [Donovan Johnson, Sep 24 2009]

Examples

			Terms 181 through 200 of A080900 are: 502, 507, 512, 510, 515, 513, 518, 523, 521, 526, 531, 529, 527, 525, 523, 521, 519, 517, 522, 527 and at term 195 we see the first duplicate, 523. So a(2) = 523.
		

Crossrefs

Cf. A080900, A080913 (when records occur).

Extensions

One more term from Lambert Herrgesell (zero815(AT)googlemail.com), Mar 09 2007
a(9)-a(10) from Donovan Johnson, Sep 24 2009
Showing 1-2 of 2 results.