login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A100897
a(n) is the decimal expansion of 7nn7.
5
7007, 7117, 7227, 7337, 7447, 7557, 7667, 7777, 7887, 7997, 710107, 711117, 712127, 713137, 714147, 715157, 716167, 717177, 718187, 719197, 720207, 721217, 722227, 723237, 724247, 725257, 726267, 727277, 728287, 729297, 730307
OFFSET
0,1
LINKS
FORMULA
a(n) = 7nn7.
EXAMPLE
If n=6, 7nn7 is 7667.
If n=15, 7nn7 is 715157 (a prime)
If n=18, 7nn7 is 718187 (a prime)
If n=19, 7nn7 is 719197 (a prime)
MAPLE
a:= n-> parse(cat(7, n, n, 7)):
seq(a(n), n=0..35); # Alois P. Heinz, Jan 24 2020
MATHEMATICA
Table[idn=IntegerDigits[n]; FromDigits[Join[{7}, idn, idn, {7}]], {n, 0, 30}] (* Harvey P. Dale, May 14 2013 *)
CROSSREFS
Cf. A100846.
Sequence in context: A050663 A114615 A209879 * A206757 A236061 A317399
KEYWORD
nonn,base,easy
AUTHOR
Parthasarathy Nambi, Jan 10 2005
STATUS
approved