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-3 of 3 results.

A216100 a(n) = 11^n mod 100.

Original entry on oeis.org

1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 1
Offset: 0

Views

Author

V. Raman, Sep 01 2012

Keywords

Comments

Period = 10.
Continued fraction expansion of ( 34677540795827 + sqrt(1251987878366961879130415285) ) / 64245607918014. - Bruno Berselli, Sep 14 2012

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[(1 + 11 x + 21 x^2 + 31 x^3 + 41 x^4 + 51 x^5 + 61 x^6 + 71 x^7 + 81 x^8 + 91 x^9) / ((1 - x) (1 + x) (1 - x + x^2 - x^3 + x^4) (1 + x + x^2 + x^3 + x^4)), {x, 0, 60}], x] (* Vincenzo Librandi, Jun 14 2013 *)
    PowerMod[11,Range[0,100],100] (* or *) PadRight[{},100,{1,11,21,31,41,51,61,71,81,91}] (* Harvey P. Dale, Jul 31 2023 *)
  • PARI
    for(i=1, 100, print(11^i%100, ", "))

Formula

G.f.: (1+11*x+21*x^2+31*x^3+41*x^4+51*x^5+61*x^6+71*x^7+81*x^8+91*x^9)/((1-x)*(1+x)*(1-x+x^2-x^3+x^4)*(1+x+x^2+x^3+x^4)). - Bruno Berselli, Sep 14 2012

A216129 a(n) = 7^n mod 1000.

Original entry on oeis.org

1, 7, 49, 343, 401, 807, 649, 543, 801, 607, 249, 743, 201, 407, 849, 943, 601, 207, 449, 143, 1, 7, 49, 343, 401, 807, 649, 543, 801, 607, 249, 743, 201, 407, 849, 943, 601, 207, 449, 143, 1, 7, 49, 343, 401, 807, 649, 543, 801, 607, 249, 743, 201, 407, 849, 943, 601, 207, 449, 143, 1
Offset: 0

Views

Author

V. Raman, Sep 01 2012

Keywords

Comments

Period = 20.

Crossrefs

Programs

  • Magma
    [Modexp(7, n, 1000): n in [0..110]]; // Vincenzo Librandi, Aug 16 2016
  • Mathematica
    PowerMod[7, Range[0, 100], 1000] (* Vincenzo Librandi, Aug 16 2016 *)
  • PARI
    for(i=0, 100, print(7^i%1000" "))
    

Extensions

a(0) = 1 prepended and offset changed by Vincenzo Librandi, Aug 16 2016

A216130 7^n mod 10000.

Original entry on oeis.org

7, 49, 343, 2401, 6807, 7649, 3543, 4801, 3607, 5249, 6743, 7201, 407, 2849, 9943, 9601, 7207, 449, 3143, 2001, 4007, 8049, 6343, 4401, 807, 5649, 9543, 6801, 7607, 3249, 2743, 9201, 4407, 849, 5943, 1601, 1207, 8449, 9143, 4001, 8007, 6049, 2343, 6401, 4807, 3649, 5543, 8801, 1607, 1249, 8743
Offset: 1

Views

Author

V. Raman, Sep 01 2012

Keywords

Comments

Period = 100.

Crossrefs

Programs

  • PARI
    for(i=1, 100, print(7^i%10000" "))
Showing 1-3 of 3 results.