login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A105092 Sum of the sides of ordered 2 prime sided prime triangles. 0
20, 62, 118, 194, 262, 346, 422, 502, 602, 658, 790, 878, 974, 1066, 1162, 1266, 1378, 1462, 1578, 1658, 1766, 1882, 2030, 2122, 2238, 2338, 2458, 2570, 2662, 2762, 2866, 2986, 3106, 3290, 3406, 3514, 3614, 3698, 3830, 3918, 4022, 4150, 4310, 4430, 4538 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

FORMULA

An ordered 2 prime sided prime triangle is 3 consecutive primes arranged in a triangle of the form p(3n-2) p(3n-1) p(3n ) n=1, 2, .. and sides s1 = p(3n-2) p(3n-1) s2 = p(3n-1) p(3n ) s3 = p(3n-2) p(3n )

EXAMPLE

The first 2 prime sided prime triangle is

2

3 5

sum of sides = (2+3) + (3+5) + (2+5) = 20 the first entry.

PROG

(PARI) sumsidestri3x3(n) = { local(x, j, s); forstep(x=1, n, 3, s = prime(x)+prime(x+1)+prime(x+2); print1(2*s", ") ) }

CROSSREFS

Sequence in context: A041780 A041782 A041784 * A112144 A007248 A117431

Adjacent sequences:  A105089 A105090 A105091 * A105093 A105094 A105095

KEYWORD

easy,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)gmail.com), Apr 07 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 19:02 EST 2012. Contains 206079 sequences.