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: Charles Duvall

Charles Duvall's wiki page.

Charles Duvall has authored 2 sequences.

A248555 a(n) is the concatenation of 3n-2, 3n and 3n-1.

Original entry on oeis.org

132, 465, 798, 101211, 131514, 161817, 192120, 222423, 252726, 283029, 313332, 343635, 373938, 404241, 434544, 464847, 495150, 525453, 555756, 586059, 616362, 646665, 676968, 707271, 737574, 767877, 798180, 828483, 858786, 889089, 919392
Offset: 1

Author

Charles Duvall, Oct 08 2014

Keywords

Programs

  • Maple
    read("transforms") ;
    A248555 := proc(n)
        digcatL([3*n-2,3*n,3*n-1]) ;
    end proc:
    seq(A248555(n),n=1..70) ;  # R. J. Mathar, Jan 22 2015
  • Mathematica
    FromDigits[Flatten[IntegerDigits/@{#-2,#,#-1}]]&/@(3*Range[40]) (* Harvey P. Dale, Jul 01 2021 *)

A248556 Concatenate (3n-2,3n-1,3n).

Original entry on oeis.org

123, 456, 789, 101112, 131415, 161718, 192021, 222324, 252627, 282930, 313233, 343536, 373839, 404142, 434445, 464748, 495051, 525354, 555657, 585960, 616263, 646566, 676869, 707172, 737475, 767778, 798081, 828384, 858687, 888990, 919293, 949596, 979899
Offset: 1

Author

Charles Duvall, Oct 08 2014

Keywords

Crossrefs

Programs

  • Magma
    [Seqint(Intseq(n+1) cat Intseq(n) cat Intseq(n-1)): n in [2..100 by 3]]; // Vincenzo Librandi, Oct 21 2014
    
  • Maple
    conc3:= (a,b,c) -> c + 10^(1+ilog10(c))*(b+10^(1+ilog10(b))*a):
    seq(conc3(3*k-2,3*k-1,3*k), k=1..100); # Robert Israel, Oct 23 2014
  • Mathematica
    FromDigits[Flatten[IntegerDigits/@{#}]]&/@Partition[Range[100], 3] (* Vincenzo Librandi, Oct 21 2014 *)
  • PARI
    a(n)=eval(Str(3*n-2,3*n-1,3*n)) \\ M. F. Hasler, Oct 22 2014

Extensions

More terms from Vincenzo Librandi, Oct 21 2014