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.

A134733 Concatenation of next n imperfect numbers.

Original entry on oeis.org

1, 23, 457, 891011, 1213141516, 171819202122, 23242526272930, 3132333435363738, 394041424344454647, 48495051525354555657, 5859606162636465666768, 697071727374757677787980
Offset: 1

Views

Author

Omar E. Pol, Nov 12 2007

Keywords

Crossrefs

Cf. A053067, A132943, A133013. Imperfect numbers: A132999.

Programs

  • Mathematica
    Module[{nn=120,in,len},in=Select[Range[nn],DivisorSigma[1,#]!=2#&];len= Floor[x/.Last[Solve[(x(x+1))/2==Length[in]]]];FromDigits[Flatten[ IntegerDigits/@ #]]&/@TakeList[in,Range[len]]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Mar 01 2020 *)

A262576 Concatenation of the numbers from 1 to n but omitting 6.

Original entry on oeis.org

1, 12, 123, 1234, 12345, 123457, 1234578, 12345789, 1234578910, 123457891011, 12345789101112, 1234578910111213, 123457891011121314, 12345789101112131415, 1234578910111213141516, 123457891011121314151617, 12345789101112131415161718, 1234578910111213141516171819, 123457891011121314151617181920
Offset: 1

Views

Author

N. J. A. Sloane, Sep 25 2015

Keywords

Comments

The only prime among the first 98 terms is a(6) = 123457. Does the sequence contain any other primes?
No additional primes through the first 2000 terms. - Harvey P. Dale, Sep 27 2018
Differs from A132943 at about the 28th terms.
No primes, other than a(6), through a(10000). - Robert Price, Nov 03 2018

Crossrefs

Cf. A132943.
See A262300 for more about this problem.

Programs

  • Mathematica
    Module[{nn=20,c},c=Drop[Range[nn],{6}];Table[FromDigits[Flatten[ IntegerDigits/@ Take[c,n]]],{n,nn-1}]] (* Harvey P. Dale, Sep 27 2018 *)
Showing 1-2 of 2 results.