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.

User: Jacy Fang

Jacy Fang's wiki page.

Jacy Fang has authored 3 sequences.

A248365 4n concatenated with itself.

Original entry on oeis.org

44, 88, 1212, 1616, 2020, 2424, 2828, 3232, 3636, 4040, 4444, 4848, 5252, 5656, 6060, 6464, 6868, 7272, 7676, 8080, 8484, 8888, 9292, 9696, 100100, 104104, 108108, 112112, 116116, 120120, 124124, 128128, 132132, 136136, 140140, 144144, 148148, 152152, 156156
Offset: 1

Author

Jacy Fang, Oct 05 2014

Keywords

Crossrefs

Cf. A020338 (n), A248038 (3n), A248422 (2n).

Programs

  • Mathematica
    a248038[n_Integer] := Module[{m, t}, m := ToString[4 n ]; ToExpression[m <> m]]; a248038 /@ Range[50]; (* Michael De Vlieger, Nov 06 2014 *)
  • Python
    {print(str(4*n)*2,end=', ') for n in range(1,50)} # Derek Orr, Oct 05 2014

A245809 Divisors of 4620.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 14, 15, 20, 21, 22, 28, 30, 33, 35, 42, 44, 55, 60, 66, 70, 77, 84, 105, 110, 132, 140, 154, 165, 210, 220, 231, 308, 330, 385, 420, 462, 660, 770, 924, 1155, 1540, 2310, 4620
Offset: 1

Author

Jacy Fang, Oct 03 2014

Keywords

Programs

A248423 Multiples of 4 with digits backwards.

Original entry on oeis.org

0, 4, 8, 21, 61, 2, 42, 82, 23, 63, 4, 44, 84, 25, 65, 6, 46, 86, 27, 67, 8, 48, 88, 29, 69, 1, 401, 801, 211, 611, 21, 421, 821, 231, 631, 41, 441, 841, 251, 651, 61, 461, 861, 271, 671, 81, 481, 881, 291, 691, 2
Offset: 0

Author

Jacy Fang, Oct 06 2014

Keywords

Crossrefs

Cf. A004093 (multiples of 2 backwards), A008586 (multiples of 4).

Programs

  • PARI
    a(n) = subst(Polrev(digits(4*n)), x, 10); \\ Michel Marcus, Oct 06 2014